Skip to content

Commit 4965426

Browse files
committed
fix!: mark endpoint sensitive for TPG v7.14
1 parent 823d621 commit 4965426

File tree

11 files changed

+18
-0
lines changed

11 files changed

+18
-0
lines changed

autogen/main/outputs.tf.tmpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ output "zones" {
6161
output "endpoint" {
6262
description = "Cluster endpoint"
6363
value = local.cluster_endpoint
64+
sensitive = true
6465
depends_on = [
6566
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6667
* However, the cluster may not be in a usable state yet. Therefore any

docs/upgrading_to_v43.0.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Upgrading to v43.0
2+
The v43.0 release of *kubernetes-engine* is a backwards incompatible release.
3+
4+
## Migration Guide
5+
6+
### endpoint output
7+
8+
The `endpoint` output is now marked as sensitive for compatibility with TPG v7.14+.

modules/beta-autopilot-private-cluster/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ output "zones" {
5858
output "endpoint" {
5959
description = "Cluster endpoint"
6060
value = local.cluster_endpoint
61+
sensitive = true
6162
depends_on = [
6263
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6364
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-autopilot-public-cluster/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ output "zones" {
5858
output "endpoint" {
5959
description = "Cluster endpoint"
6060
value = local.cluster_endpoint
61+
sensitive = true
6162
depends_on = [
6263
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6364
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-private-cluster-update-variant/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ output "zones" {
5959
output "endpoint" {
6060
description = "Cluster endpoint"
6161
value = local.cluster_endpoint
62+
sensitive = true
6263
depends_on = [
6364
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6465
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-private-cluster/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ output "zones" {
5959
output "endpoint" {
6060
description = "Cluster endpoint"
6161
value = local.cluster_endpoint
62+
sensitive = true
6263
depends_on = [
6364
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6465
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-public-cluster-update-variant/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ output "zones" {
5959
output "endpoint" {
6060
description = "Cluster endpoint"
6161
value = local.cluster_endpoint
62+
sensitive = true
6263
depends_on = [
6364
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6465
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-public-cluster/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ output "zones" {
5959
output "endpoint" {
6060
description = "Cluster endpoint"
6161
value = local.cluster_endpoint
62+
sensitive = true
6263
depends_on = [
6364
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6465
* However, the cluster may not be in a usable state yet. Therefore any

modules/private-cluster-update-variant/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ output "zones" {
5959
output "endpoint" {
6060
description = "Cluster endpoint"
6161
value = local.cluster_endpoint
62+
sensitive = true
6263
depends_on = [
6364
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6465
* However, the cluster may not be in a usable state yet. Therefore any

modules/private-cluster/outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ output "zones" {
5959
output "endpoint" {
6060
description = "Cluster endpoint"
6161
value = local.cluster_endpoint
62+
sensitive = true
6263
depends_on = [
6364
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6465
* However, the cluster may not be in a usable state yet. Therefore any

0 commit comments

Comments
 (0)