File tree 1 file changed +6
-0
lines changed
mmv1/third_party/terraform/services/notebooks
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ func TestAccNotebooksRuntime_update(t *testing.T) {
25
25
ResourceName: "google_notebooks_runtime.runtime",
26
26
ImportState: true,
27
27
ImportStateVerify: true,
28
+ ImportStateVerifyIgnore: []string{"labels", "terraform_labels"},
28
29
},
29
30
{
30
31
Config: testAccNotebooksRuntime_update(context),
@@ -33,6 +34,7 @@ func TestAccNotebooksRuntime_update(t *testing.T) {
33
34
ResourceName: "google_notebooks_runtime.runtime",
34
35
ImportState: true,
35
36
ImportStateVerify: true,
37
+ ImportStateVerifyIgnore: []string{"labels", "terraform_labels"},
36
38
},
37
39
{
38
40
Config: testAccNotebooksRuntime_basic(context),
@@ -41,6 +43,7 @@ func TestAccNotebooksRuntime_update(t *testing.T) {
41
43
ResourceName: "google_notebooks_runtime.runtime",
42
44
ImportState: true,
43
45
ImportStateVerify: true,
46
+ ImportStateVerifyIgnore: []string{"labels", "terraform_labels"},
44
47
},
45
48
},
46
49
})
@@ -101,6 +104,9 @@ resource "google_notebooks_runtime" "runtime" {
101
104
reserved_ip_range = "192.168.255.0/24"
102
105
}
103
106
}
107
+ labels = {
108
+ k = "val"
109
+ }
104
110
}
105
111
`, context)
106
112
}
You can’t perform that action at this time.
0 commit comments