Skip to content

Commit

Permalink
Remove additional key from conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
c2thorn committed Aug 21, 2024
1 parent 47b37d5 commit 589212e
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,6 @@ func ResourceGoogleProject() *schema.Resource {
to be abandoned rather than deleted. Possible values are: "PREVENT", "ABANDON", "DELETE"`,
ValidateFunc: validation.StringInSlice([]string{"PREVENT", "ABANDON", "DELETE"}, false),
},
"deletion_policy": {
Type: schema.TypeString,
Optional: true,
Default: "DELETE",
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
to be abandoned rather than deleted. Possible values are: "PREVENT", "ABANDON", "DELETE"`,
ValidateFunc: validation.StringInSlice([]string{"PREVENT", "ABANDON", "DELETE"}, false),
},
"auto_create_network": {
Type: schema.TypeBool,
Optional: true,
Expand Down

0 comments on commit 589212e

Please sign in to comment.