Skip to content

Commit

Permalink
fix: mark secret outputs sensitive for classic vpn
Browse files Browse the repository at this point in the history
Ref: #158
  • Loading branch information
qbaze committed May 21, 2024
1 parent 68f7535 commit a96d319
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ output "vpn_tunnels_self_link-static" {
output "ipsec_secret-static" {
description = "The secret"
value = google_compute_vpn_tunnel.tunnel-static[*].shared_secret
sensitive = true
}

output "vpn_tunnels_names-dynamic" {
Expand All @@ -67,4 +68,5 @@ output "vpn_tunnels_self_link-dynamic" {
output "ipsec_secret-dynamic" {
description = "The secret"
value = google_compute_vpn_tunnel.tunnel-dynamic[*].shared_secret
sensitive = true
}

0 comments on commit a96d319

Please sign in to comment.