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 #776 from simonswine/automated-cherry-pick-of-#775…
Browse files Browse the repository at this point in the history
…-release-0.6

Automated cherry pick of #775
  • Loading branch information
jetstack-bot committed Mar 14, 2019
2 parents fc55f14 + 3c1692e commit 7c8b918
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 7c8b918

Please sign in to comment.