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

Backport fixes from network into network-existing-vpc #775

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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