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

Commit

Permalink
Backport fixes from network into network-existing-vpc
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Simon <simon@swine.de>
  • Loading branch information
simonswine committed Mar 14, 2019
1 parent 8f1ca08 commit 7e698cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions terraform/amazon/modules/network-existing-vpc/outputs.tf
Original file line number Diff line number Diff line change
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 7e698cb

Please sign in to comment.