[Terraform-AWS] Replace CLB with NLB (#8578)

This commit is contained in:
SOPHAL HONG
2022-02-25 16:53:54 +09:00
committed by GitHub
parent ee079f4740
commit 6d683c98a3
12 changed files with 72 additions and 84 deletions

View File

@@ -14,8 +14,8 @@ output "etcd" {
value = join("\n", ((var.aws_etcd_num > 0) ? (aws_instance.k8s-etcd.*.private_ip) : (aws_instance.k8s-master.*.private_ip)))
}
output "aws_elb_api_fqdn" {
value = "${module.aws-elb.aws_elb_api_fqdn}:${var.aws_elb_api_port}"
output "aws_nlb_api_fqdn" {
value = "${module.aws-nlb.aws_nlb_api_fqdn}:${var.aws_nlb_api_port}"
}
output "inventory" {