Skip to content

Commit

Permalink
fixed misaligned } in outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
chadgeary committed Nov 12, 2020
1 parent 3cd1e98 commit 185e9ea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion azure/az-output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ output "wireguard-msg" {
}

output "pihole-web-vpn-msg" {
value = "pihole webUI also available (when on Wireguard VPN) @ https://${var.docker_pihole}/admin/" }
value = "pihole webUI also available (when on Wireguard VPN) @ https://${var.docker_pihole}/admin/"
}

output "pihole-web-msg" {
value = "pihole webUI @ https://${azurerm_public_ip.ph-public-ip.ip_address}/admin/"
Expand Down
3 changes: 2 additions & 1 deletion gcp/gcp-output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ output "pihole-web-msg" {
}

output "pihole-web-vpn-msg" {
value = "pihole webUI also available (when on Wireguard VPN) @ https://${var.docker_pihole}/admin/" }
value = "pihole webUI also available (when on Wireguard VPN) @ https://${var.docker_pihole}/admin/"
}

output "wireguard-msg" {
value = "Wireguard confs (one per device!) @ https://console.cloud.google.com/storage/browser/${var.ph_prefix}-bucket-${random_string.ph-random.result}/wireguard?project=${var.ph_prefix}-project-${random_string.ph-random.result}"
Expand Down
3 changes: 2 additions & 1 deletion oci/oci-output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ output "pihole-web-msg" {
}

output "pihole-web-vpn-msg" {
value = "pihole webUI also available (when on Wireguard VPN) @ https://${var.docker_pihole}/admin/" }
value = "pihole webUI also available (when on Wireguard VPN) @ https://${var.docker_pihole}/admin/"
}

0 comments on commit 185e9ea

Please sign in to comment.