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
Copy file name to clipboardExpand all lines: modules/binary-authorization/README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ module "quality-attestor" {
35
35
| Name | Description | Type | Default | Required |
36
36
|------|-------------|:----:|:-----:|:-----:|
37
37
| attestor-name | Name of the attestor | string | n/a | yes |
38
+
| disable\_dependent\_services | Whether services that are enabled and which depend on this service should also be disabled when this service is destroyed. https://www.terraform.io/docs/providers/google/r/google_project_service.html#disable_dependent_services| bool |`"false"`| no |
39
+
| disable\_services\_on\_destroy | Whether project services will be disabled when the resources are destroyed. https://www.terraform.io/docs/providers/google/r/google_project_service.html#disable_on_destroy| bool |`"false"`| no |
38
40
| project\_id | Project ID to apply services into | string | n/a | yes |
Copy file name to clipboardExpand all lines: modules/binary-authorization/variables.tf
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -34,3 +34,15 @@ variable crypto-algorithm {
34
34
default="RSA_SIGN_PKCS1_4096_SHA512"
35
35
description="Algorithm used for the async signing keys"
36
36
}
37
+
38
+
variable"disable_services_on_destroy" {
39
+
description="Whether project services will be disabled when the resources are destroyed. https://www.terraform.io/docs/providers/google/r/google_project_service.html#disable_on_destroy"
40
+
default=false
41
+
type=bool
42
+
}
43
+
44
+
variable"disable_dependent_services" {
45
+
description="Whether services that are enabled and which depend on this service should also be disabled when this service is destroyed. https://www.terraform.io/docs/providers/google/r/google_project_service.html#disable_dependent_services"
0 commit comments