File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
google-beta/services/workstations Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ ```release-note:none
2+
3+ ```
Original file line number Diff line number Diff line change @@ -673,6 +673,15 @@ resource "google_workstations_workstation_cluster" "default" {
673673 location = "us-central1"
674674}
675675
676+ # No longer explicitly used in google_workstations_workstation_config resource block below, but the
677+ # service account needs to keep existing to allow the field to default from the API without error
678+ resource "google_service_account" "default" {
679+ provider = google-beta
680+
681+ account_id = "tf-test-my-account%{random_suffix}"
682+ display_name = "Service Account"
683+ }
684+
676685resource "google_workstations_workstation_config" "default" {
677686 provider = google-beta
678687 workstation_config_id = "tf-test-workstation-config%{random_suffix}"
@@ -727,6 +736,15 @@ resource "google_workstations_workstation_cluster" "default" {
727736 location = "us-central1"
728737}
729738
739+ # No longer explicitly used in google_workstations_workstation_config resource block below, but the
740+ # service account needs to keep existing to allow the field to default from the API without error
741+ resource "google_service_account" "default" {
742+ provider = google-beta
743+
744+ account_id = "tf-test-my-account%{random_suffix}"
745+ display_name = "Service Account"
746+ }
747+
730748resource "google_workstations_workstation_config" "default" {
731749 provider = google-beta
732750 workstation_config_id = "tf-test-workstation-config%{random_suffix}"
You can’t perform that action at this time.
0 commit comments