Support display_name for workstation configurations (#3251)

The definition already had the property but it was not used anywhere: https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/blob/master/modules/workstation-cluster/variables.tf#L86
This commit is contained in:
Sebastian Kunze
2025-07-28 13:00:20 +02:00
committed by GitHub
parent 3e0810dfef
commit 7d11d6af2b

View File

@@ -55,6 +55,7 @@ resource "google_workstations_workstation_config" "configs" {
workstation_config_id = each.key
workstation_cluster_id = google_workstations_workstation_cluster.cluster.workstation_cluster_id
location = google_workstations_workstation_cluster.cluster.location
display_name = each.value.display_name
max_usable_workstations = each.value.max_workstations
idle_timeout = (
each.value.timeouts.idle == null ? null : "${each.value.timeouts.idle}s"