Skip to content

Commit 14096f1

Browse files
committed
feat: support TPG v6.11 and control_plane_endpoints_config
1 parent 04687ba commit 14096f1

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

examples/safer_cluster_iap_bastion/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ To deploy this example:
6060
| ca\_certificate | Cluster ca certificate (base64 encoded) |
6161
| cluster\_name | Cluster name |
6262
| endpoint | Cluster endpoint |
63+
| endpoint\_dns | Cluster endpoint dnd |
6364
| get\_credentials\_command | gcloud get-credentials command to generate kubeconfig for the private cluster |
6465
| keyring | The name of the keyring. |
6566
| keyring\_resource | The location of the keyring. |

examples/safer_cluster_iap_bastion/outputs.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ output "endpoint" {
3535
value = module.gke.endpoint
3636
}
3737

38+
output "endpoint_dns" {
39+
sensitive = true
40+
description = "Cluster endpoint dnd"
41+
value = module.gke.endpoint_dns
42+
}
43+
3844
output "master_authorized_networks_config" {
3945
description = "Networks from which access to master is permitted"
4046
value = module.gke.master_authorized_networks_config

0 commit comments

Comments
 (0)