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: `When the field is set to true or unset in Terraform state, a terraform apply or terraform destroy that would delete the instance will fail. When the field is set to false, deleting the instance is allowed.`,
73
73
},
74
+
"tags": {
75
+
Type: schema.TypeMap,
76
+
Optional: true,
77
+
ForceNew: true,
78
+
Elem: &schema.Schema{Type: schema.TypeString},
79
+
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.`,
80
+
},
74
81
},
75
82
UseJSONNumber: true,
76
83
}
@@ -86,14 +93,19 @@ func resourceGoogleFolderCreate(d *schema.ResourceData, meta interface{}) error
@@ -46,6 +55,8 @@ The following arguments are supported:
46
55
*`parent` - (Required) The resource name of the parent Folder or Organization.
47
56
Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
48
57
58
+
*`tags` - (Optional) 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. The field is immutable and causes resource replacement when mutated.
59
+
49
60
## Attributes Reference
50
61
51
62
In addition to the arguments listed above, the following computed attributes are
0 commit comments