diff --git a/README.md b/README.md index 4cbf082..b5b72b8 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Functional examples are included in the | key\_algorithm | The algorithm to use when creating a version based on this template. See the https://cloud.google.com/kms/docs/reference/rest/v1/CryptoKeyVersionAlgorithm for possible inputs. | `string` | `"GOOGLE_SYMMETRIC_ENCRYPTION"` | no | | key\_destroy\_scheduled\_duration | Set the period of time that versions of keys spend in the DESTROY\_SCHEDULED state before transitioning to DESTROYED. | `string` | `null` | no | | key\_protection\_level | The protection level to use when creating a version based on this template. Default value: "SOFTWARE" Possible values: ["SOFTWARE", "HSM"] | `string` | `"SOFTWARE"` | no | -| key\_rotation\_period | Generate a new key every time this period passes. | `string` | `"100000s"` | no | +| key\_rotation\_period | Generate a new key every time this period passes. | `string` | `"7776000s"` | no | | keyring | Keyring name. | `string` | n/a | yes | | keys | Key names. | `list(string)` | `[]` | no | | labels | Labels, provided as a map | `map(string)` | `{}` | no | diff --git a/variables.tf b/variables.tf index 3f44887..94d22e7 100644 --- a/variables.tf +++ b/variables.tf @@ -93,7 +93,7 @@ variable "decrypters" { variable "key_rotation_period" { description = "Generate a new key every time this period passes." type = string - default = "100000s" + default = "7776000s" } variable "key_algorithm" {