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
| project | Name of the project. |`string`| n/a | yes |
62
+
| add_suffix | Apply a random suffix to the secret name. Useful when secrets may need to be replaced, but makes identify secrets by name alone more difficult. |`bool`|`true`| no |
63
+
| environment | Environment for the project. |`string`|`"dev"`| no |
64
+
| key_recovery_period | Number of days to recover the KMS key after deletion. |`number`|`30`| no |
65
+
|[secrets]| Secrets to be created. |`map(object)`|`{}`| no |
66
+
| service | Optional service that these resources are supporting. Example: `"api"`, `"web"`, `"worker"`|`string`| n/a | no |
67
+
| tags | Optional tags to be applied to all resources. |`list`|`[]`| no |
Copy file name to clipboardExpand all lines: variables.tf
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
variable"add_suffix" {
2
+
type=bool
3
+
description="Apply a random suffix to the secret name. Useful when secrets may need to be replaced, but makes identify secrets by name alone more difficult."
0 commit comments