Skip to content

Commit 1ad1719

Browse files
committed
fix: add nonsensitive for TPG v7.14.0
1 parent 823d621 commit 1ad1719

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

autogen/main/outputs.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ output "zones" {
6060

6161
output "endpoint" {
6262
description = "Cluster endpoint"
63-
value = local.cluster_endpoint
63+
value = nonsensitive(local.cluster_endpoint)
6464
depends_on = [
6565
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6666
* However, the cluster may not be in a usable state yet. Therefore any

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ output "zones" {
5757

5858
output "endpoint" {
5959
description = "Cluster endpoint"
60-
value = local.cluster_endpoint
60+
value = nonsensitive(local.cluster_endpoint)
6161
depends_on = [
6262
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6363
* However, the cluster may not be in a usable state yet. Therefore any

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ output "zones" {
5757

5858
output "endpoint" {
5959
description = "Cluster endpoint"
60-
value = local.cluster_endpoint
60+
value = nonsensitive(local.cluster_endpoint)
6161
depends_on = [
6262
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6363
* 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-private-cluster/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* However, the cluster may not be in a usable state yet. Therefore any

modules/beta-public-cluster/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* However, the cluster may not be in a usable state yet. Therefore any

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* However, the cluster may not be in a usable state yet. Therefore any

modules/private-cluster/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* However, the cluster may not be in a usable state yet. Therefore any

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ output "zones" {
5858

5959
output "endpoint" {
6060
description = "Cluster endpoint"
61-
value = local.cluster_endpoint
61+
value = nonsensitive(local.cluster_endpoint)
6262
depends_on = [
6363
/* Nominally, the endpoint is populated as soon as it is known to Terraform.
6464
* However, the cluster may not be in a usable state yet. Therefore any

0 commit comments

Comments
 (0)