Skip to content

Commit

Permalink
fix: mark secret outputs sensitive for classic vpn Ref: #158 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
qbaze authored Jul 23, 2024
1 parent 68f7535 commit c3c7812
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 c3c7812

Please sign in to comment.