You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.`,
134
134
Elem: &schema.Schema{Type: schema.TypeString},
135
135
},
136
+
137
+
"tags": {
138
+
Type: schema.TypeMap,
139
+
Optional: true,
140
+
ForceNew: true,
141
+
Elem: &schema.Schema{Type: schema.TypeString},
142
+
Description: `A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty.`,
143
+
},
136
144
},
137
145
UseJSONNumber: true,
138
146
}
@@ -166,6 +174,10 @@ func resourceGoogleProjectCreate(d *schema.ResourceData, meta interface{}) error
0 commit comments