File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
operations/deployment/terraform/aws Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -792,7 +792,7 @@ locals {
792792 ec2_private_endpoint = var. aws_ec2_instance_create ? (module. ec2 [0 ]. instance_private_dns != null ? module. ec2 [0 ]. instance_private_dns : module. ec2 [0 ]. instance_private_ip ) : null
793793 ec2_endpoint = var. aws_ec2_instance_create ? (local. ec2_public_endpoint != null ? " ${ local . protocol } ${ local . ec2_public_endpoint } " : " ${ local . protocol } ${ local . ec2_private_endpoint } " ) : null
794794 elb_url = try (module. aws_elb [0 ]. aws_elb_dns_name , null ) != null ? " ${ local . protocol } ${ module . aws_elb [0 ]. aws_elb_dns_name } " : null
795- alb_url = try (module. aws_alb [0 ]. aws_alb_dns_name , null ) != null ? " ${ local . protocol } ${ module . aws_alb [0 ]. aws_alb_dns_name } " : null
795+ alb_url = try (module. aws_lb [0 ]. aws_alb_dns_name , null ) != null ? " ${ local . protocol } ${ module . aws_lb [0 ]. aws_alb_dns_name } " : null
796796}
797797
798798# VPC
@@ -842,7 +842,7 @@ output "aws_elb_dns_name" {
842842
843843output "aws_alb_dns_name" {
844844 description = " Public DNS address of the ALB"
845- value = try (module. aws_alb [0 ]. aws_alb_dns_name , null )
845+ value = try (module. aws_lb [0 ]. aws_alb_dns_name , null )
846846}
847847
848848output "application_public_dns" {
You can’t perform that action at this time.
0 commit comments