@@ -23,25 +23,28 @@ func TestAccNotebooksRuntime_update(t *testing.T) {
2323 Config : testAccNotebooksRuntime_basic (context ),
2424 },
2525 {
26- ResourceName : "google_notebooks_runtime.runtime" ,
27- ImportState : true ,
28- ImportStateVerify : true ,
26+ ResourceName : "google_notebooks_runtime.runtime" ,
27+ ImportState : true ,
28+ ImportStateVerify : true ,
29+ ImportStateVerifyIgnore : []string {"labels" , "terraform_labels" },
2930 },
3031 {
3132 Config : testAccNotebooksRuntime_update (context ),
3233 },
3334 {
34- ResourceName : "google_notebooks_runtime.runtime" ,
35- ImportState : true ,
36- ImportStateVerify : true ,
35+ ResourceName : "google_notebooks_runtime.runtime" ,
36+ ImportState : true ,
37+ ImportStateVerify : true ,
38+ ImportStateVerifyIgnore : []string {"labels" , "terraform_labels" },
3739 },
3840 {
3941 Config : testAccNotebooksRuntime_basic (context ),
4042 },
4143 {
42- ResourceName : "google_notebooks_runtime.runtime" ,
43- ImportState : true ,
44- ImportStateVerify : true ,
44+ ResourceName : "google_notebooks_runtime.runtime" ,
45+ ImportState : true ,
46+ ImportStateVerify : true ,
47+ ImportStateVerifyIgnore : []string {"labels" , "terraform_labels" },
4548 },
4649 },
4750 })
@@ -101,6 +104,9 @@ resource "google_notebooks_runtime" "runtime" {
101104 reserved_ip_range = "192.168.255.0/24"
102105 }
103106 }
107+ labels = {
108+ k = "val"
109+ }
104110}
105111` , context )
106112}
0 commit comments