Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Commit

Permalink
Remove trailing period from opsman dns outputs
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Moran <[email protected]>
  • Loading branch information
Kevin Kelani authored and Genevieve L'Esperance committed Jan 23, 2018
1 parent 76a5595 commit d4a2f7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ output "service_account_email" {
}

output "ops_manager_dns" {
value = "${google_dns_record_set.ops-manager-dns.name}"
value = "${replace(google_dns_record_set.ops-manager-dns.name, "/\\.$/", "")}"
}

output "optional_ops_manager_dns" {
value = "${element(concat(google_dns_record_set.optional-ops-manager-dns.*.name, list("")), 0)}"
value = "${replace(element(concat(google_dns_record_set.optional-ops-manager-dns.*.name, list("")), 0), "/\\.$/", "")}"
}

output "sys_domain" {
Expand Down

0 comments on commit d4a2f7a

Please sign in to comment.