terraform: Allow nodes to join the cluster when using a jump host by removing the constellation-uid tag (#3064)

* terraform: remove constellation-uid tag from jump-host
This commit is contained in:
3u13r 2024-05-06 12:25:52 +02:00 committed by GitHub
parent 3241e5a126
commit ecebd607c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -240,7 +240,7 @@ module "jump_host" {
base_name = local.name
zone = var.zone
subnetwork = google_compute_subnetwork.vpc_subnetwork.id
labels = local.labels
labels = var.additional_labels
lb_internal_ip = google_compute_address.loadbalancer_ip_internal[0].address
ports = [for port in local.control_plane_named_ports : port.port]
}