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
resourcemanager: added `deletion_policy` field to replace `skip_delete` field in `google_project` resource. Setting `deletion_policy` to `PREVENT` will protect the project against any destroy actions caused by a terraform apply or terraform destroy. Setting `deletion_policy` to `ABANDON` allows the resource to be abandoned rather than deleted and it behaves the same with `skip_delete = true`. Default value is `DELETE`.
Description: `If true, the Terraform resource can be deleted without deleting the Project via the Google API.`,
77
78
},
79
+
"deletion_policy": {
80
+
Type: schema.TypeString,
81
+
Optional: true,
82
+
Default: "DELETE",
83
+
Description: `The deletion policy for the Project. Setting PREVENT will protect the project against any destroy actions caused by a terraform apply or terraform destroy. Setting ABANDON allows the resource
84
+
to be abandoned rather than deleted. Possible values are: "PREVENT", "ABANDON", "DELETE"`,
0 commit comments