-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f23674
commit fe71391
Showing
5 changed files
with
157 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,32 @@ | ||
################################################################################ | ||
## alb | ||
################################################################################ | ||
output "alb_name" { | ||
/* output "alb_name" { | ||
description = "Name of the ALB" | ||
value = module.alb.alb_name | ||
} | ||
output "alb_arn" { | ||
description = "ARN to the ALB" | ||
value = module.alb.alb_arn | ||
value = aws_lb.this.alb_arn | ||
} | ||
output "alb_dns_name" { | ||
description = "External DNS name to the ALB" | ||
value = module.alb.alb_dns_name | ||
value = aws_lb.this.alb_dns_name | ||
} | ||
output "alb_zone_id" { | ||
description = "Zone ID of the ALB" | ||
value = module.alb.alb_zone_id | ||
value = aws_lb.this.alb_zone_id | ||
} */ | ||
|
||
|
||
output "public_subnet_ids" { | ||
value = data.aws_subnets.public | ||
description = "List of IDs of the public subnets in the specified VPC" | ||
} | ||
|
||
output "alb_subnets_debug" { | ||
value = local.alb_subnets | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters