Skip to content

Commit

Permalink
fix: sensitive gh-runner-gke ca_certificate output
Browse files Browse the repository at this point in the history
The gh-runner-gke module depends on terraform-google-kubernetes-engine/beta-private-cluster
and passes through some of it's outputs. However the `ca_certificate` output is not
properly tagged as sensitive = true to match it's upstream counterpart.

This commit correctly sets the ca_certificate output as sensitive.
  • Loading branch information
cjonesy committed Oct 15, 2024
1 parent 730f92b commit a546da7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/gh-runner-gke/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ output "client_token" {

output "ca_certificate" {
description = "The cluster ca certificate (base64 encoded)"
sensitive = true
value = module.runner-cluster.ca_certificate
}

Expand Down

0 comments on commit a546da7

Please sign in to comment.