From c4add2cb0dc4b4facd53b503c349bee944a68941 Mon Sep 17 00:00:00 2001 From: Sergey Novikov Date: Thu, 12 Dec 2024 10:26:54 +0100 Subject: [PATCH] OPS-6392 Fix examples outputs --- examples/custom-vpc-with-vault/README.md | 4 ++-- examples/custom-vpc-with-vault/outputs.tf | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/custom-vpc-with-vault/README.md b/examples/custom-vpc-with-vault/README.md index d69f3cf..c7d85a9 100644 --- a/examples/custom-vpc-with-vault/README.md +++ b/examples/custom-vpc-with-vault/README.md @@ -66,8 +66,8 @@ No resources. | Name | Description | |------|-------------| | [elb\_fqdn\_bastion](#output\_elb\_fqdn\_bastion) | AWS generated CNAME for the bastion host ELB | -| [elb\_fqdn\_vault](#output\_elb\_fqdn\_vault) | AWS generated CNAME for the vault ELB | | [elb\_route53\_public\_dns\_name\_bastion](#output\_elb\_route53\_public\_dns\_name\_bastion) | Route53 public DNS name for the bastion host ELB | -| [elb\_route53\_public\_dns\_name\_vault](#output\_elb\_route53\_public\_dns\_name\_vault) | Route53 public DNS name for the vault ELB | +| [alb\_fqdn\_vault](#output\_alb\_fqdn\_vault) | AWS generated CNAME for the vault ALB | +| [alb\_route53\_public\_dns\_name\_vault](#output\_alb\_route53\_public\_dns\_name\_vault) | Route53 public DNS name for the vault ALB | diff --git a/examples/custom-vpc-with-vault/outputs.tf b/examples/custom-vpc-with-vault/outputs.tf index a195215..e56aee4 100644 --- a/examples/custom-vpc-with-vault/outputs.tf +++ b/examples/custom-vpc-with-vault/outputs.tf @@ -6,17 +6,17 @@ output "elb_fqdn_bastion" { description = "AWS generated CNAME for the bastion host ELB" } -output "elb_fqdn_vault" { - value = module.aws_vault.elb_fqdn_vault - description = "AWS generated CNAME for the vault ELB" -} - output "elb_route53_public_dns_name_bastion" { value = module.aws_vpc.bastion_route53_public_dns_name description = "Route53 public DNS name for the bastion host ELB" } -output "elb_route53_public_dns_name_vault" { - value = module.aws_vault.elb_route53_public_dns_name_vault - description = "Route53 public DNS name for the vault ELB" +output "alb_fqdn_vault" { + value = module.aws_vault.alb_fqdn_vault + description = "AWS generated CNAME for the vault ALB" +} + +output "alb_route53_public_dns_name_vault" { + value = module.aws_vault.alb_route53_public_dns_name_vault + description = "Route53 public DNS name for the vault ALB" }