Skip to content

Commit a0cd3f9

Browse files
authored
fix: add possible values for "deletion_policy" (#983)
1 parent 6b0c12e commit a0cd3f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ determining that location is as follows:
137137
| create\_project\_sa | Whether the default service account for the project shall be created | `bool` | `true` | no |
138138
| default\_network\_tier | Default Network Service Tier for resources created in this project. If unset, the value will not be modified. See https://cloud.google.com/network-tiers/docs/using-network-service-tiers and https://cloud.google.com/network-tiers. | `string` | `""` | no |
139139
| default\_service\_account | Project default service account setting: can be one of `delete`, `deprivilege`, `disable`, or `keep`. | `string` | `"disable"` | no |
140-
| deletion\_policy | The deletion policy for the project. | `string` | `"PREVENT"` | no |
140+
| deletion\_policy | The deletion policy for the project. Possible values are: DELETE, PREVENT | `string` | `"PREVENT"` | no |
141141
| disable\_dependent\_services | Whether services that are enabled and which depend on this service should also be disabled when this service is destroyed. | `bool` | `true` | no |
142142
| disable\_services\_on\_destroy | Whether project services will be disabled when the resources are destroyed | `bool` | `true` | no |
143143
| domain | The domain name (optional). | `string` | `""` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ variable "cloud_armor_tier" {
367367
}
368368

369369
variable "deletion_policy" {
370-
description = "The deletion policy for the project."
370+
description = "The deletion policy for the project. Possible values are: DELETE, PREVENT"
371371
type = string
372372
default = "PREVENT"
373373
}

0 commit comments

Comments
 (0)