Skip to content

Commit 25e9799

Browse files
Fix metadata drifting on workbench instances (#11407) (#2660)
[upstream:8ccabb776d29cf0edd5286dd9bb8a077a7740d9c] Signed-off-by: Modular Magician <magic-modules@google.com>
1 parent e99f784 commit 25e9799

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/hashicorp/hcl/v2 v2.20.1
1212
github.com/hashicorp/terraform-json v0.22.1
1313
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
14-
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240813184931-59e42064e8ad
14+
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240813201407-f2425b4433f6
1515
github.com/mitchellh/go-homedir v1.1.0 // indirect
1616
github.com/pkg/errors v0.9.1
1717
github.com/stretchr/testify v1.9.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0 h1:qHprzXy/As0rxedphECBEQAh
190190
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0/go.mod h1:H+8tjs9TjV2w57QFVSMBQacf8k/E1XwLXGCARgViC6A=
191191
github.com/hashicorp/terraform-plugin-testing v1.5.1 h1:T4aQh9JAhmWo4+t1A7x+rnxAJHCDIYW9kXyo4sVO92c=
192192
github.com/hashicorp/terraform-plugin-testing v1.5.1/go.mod h1:dg8clO6K59rZ8w9EshBmDp1CxTIPu3yA4iaDpX1h5u0=
193-
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240813184931-59e42064e8ad h1:hmc1bRS4Su2tQtAp0WIF8ZN3Z1tnQ4e1A2d8DuCdUX4=
194-
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240813184931-59e42064e8ad/go.mod h1:IkI2dOHongwQ2RIUyitBH4rDJvYBuClAoFCheApCTpY=
193+
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240813201407-f2425b4433f6 h1:SLS0h0Io1bzZmjS0JGG6GRe+7Szi1t8ydbBUZXnG9EE=
194+
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240813201407-f2425b4433f6/go.mod h1:IkI2dOHongwQ2RIUyitBH4rDJvYBuClAoFCheApCTpY=
195195
github.com/hashicorp/terraform-registry-address v0.2.3 h1:2TAiKJ1A3MAkZlH1YI/aTVcLZRu7JseiXNRHbOAyoTI=
196196
github.com/hashicorp/terraform-registry-address v0.2.3/go.mod h1:lFHA76T8jfQteVfT7caREqguFrW3c4MFSPhZB7HHgUM=
197197
github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ=

tfplan2cai/converters/google/resources/services/workbench/workbench_instance.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ var WorkbenchInstanceProvidedMetadata = []string{
5555
"agent-health-check-interval-seconds",
5656
"agent-health-check-path",
5757
"container",
58+
"cos-update-strategy",
5859
"custom-container-image",
5960
"custom-container-payload",
6061
"data-disk-uri",
@@ -73,6 +74,7 @@ var WorkbenchInstanceProvidedMetadata = []string{
7374
"generate-diagnostics-bucket",
7475
"generate-diagnostics-file",
7576
"generate-diagnostics-options",
77+
"google-logging-enabled",
7678
"image-url",
7779
"install-monitoring-agent",
7880
"install-nvidia-driver",
@@ -95,6 +97,7 @@ var WorkbenchInstanceProvidedMetadata = []string{
9597
"report-system-status",
9698
"restriction",
9799
"serial-port-logging-enable",
100+
"service-account-mode",
98101
"shutdown-script",
99102
"title",
100103
"use-collaborative",

0 commit comments

Comments
 (0)