Skip to content

Commit

Permalink
Update outputs.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
burib authored Nov 13, 2024
1 parent 4c3faa4 commit c1ee52b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@ output "wildcard_certificate_arn" {
value = element(concat(aws_acm_certificate_validation.wildcard_cert.*.certificate_arn, aws_acm_certificate.wildcard_cert.*.arn, [""]), 0)
}

output "hosted_zone_ns_records" {
description = "Name servers of the created hosted zone."
value = aws_route53_zone.this.name_servers
}

output "hosted_zone_arn" {
description = "The ARN of the hosted zone"
value = aws_route53_zone.this.zone_arn
}

output "hosted_zone_id" {
description = "The ID of the hosted zone"
value = aws_route53_zone.this.zone_id
}

output "hosted_zone_name" {
description = "Name of the hosted zone. example.com"
value = aws_route53_zone.this.name
}

output "region" {
value = local.region
description = "AWS Region code where this stack has been deployed to."
Expand Down

0 comments on commit c1ee52b

Please sign in to comment.