Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #775 from simonswine/fix-route53-zone-existing-vpc
Browse files Browse the repository at this point in the history
Backport fixes from network into network-existing-vpc
  • Loading branch information
jetstack-bot committed Mar 14, 2019
2 parents 8f1ca08 + 7e698cb commit 75e1fa9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions terraform/amazon/modules/network-existing-vpc/outputs.tf
Expand Up @@ -35,11 +35,12 @@ output "route_table_private_ids" {
}

output "private_zone_id" {
value = ["${aws_route53_zone.private.*.id}"]
value = "${concat(aws_route53_zone.private.*.id, list(""))}"
}

# remove trailing dots from the name
output "private_zone" {
value = ["${aws_route53_zone.private.*.name}"]
value = "${list(replace(aws_route53_zone.private.0.name, "/\\.$/", ""), "")}"
}

output "environment" {
Expand Down

0 comments on commit 75e1fa9

Please sign in to comment.