From 492db214289af871e608563b547a92426f9f12eb Mon Sep 17 00:00:00 2001 From: Wayne Starr Date: Mon, 12 Aug 2024 17:22:07 -0600 Subject: [PATCH] better message --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3591b4d..d79000b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ go test -count 1 -v . | [kms\_key\_description](#input\_kms\_key\_description) | Description for the KMS key. | `string` | `""` | no | | [kms\_key\_policy\_default\_identities](#input\_kms\_key\_policy\_default\_identities) | A list of IAM ARNs for those who will have full key permissions (`kms:*`) | `list(string)` | `[]` | no | | [kms\_key\_policy\_default\_services](#input\_kms\_key\_policy\_default\_services) | A list of services that will have full key permissions (`kms:*`) | `list(string)` | `[]` | no | -| [kms\_key\_usage](#input\_kms\_key\_usage) | What the key is intended to be used for (ENCRYPT\_DECRYPT or SIGN\_VERIFY. Defaults to ENCRYPT\_DECRYPT) | `string` | `"ENCRYPT_DECRYPT"` | no | +| [kms\_key\_usage](#input\_kms\_key\_usage) | What the key is intended to be used for (ENCRYPT\_DECRYPT or SIGN\_VERIFY) | `string` | `"ENCRYPT_DECRYPT"` | no | | [tags](#input\_tags) | A map of tags to add to all resources. | `map(string)` | `{}` | no | ## Outputs diff --git a/variables.tf b/variables.tf index 26cf608..39ba8fc 100644 --- a/variables.tf +++ b/variables.tf @@ -46,7 +46,7 @@ variable "kms_external_key" { } variable "kms_key_usage" { - description = "What the key is intended to be used for (ENCRYPT_DECRYPT or SIGN_VERIFY. Defaults to ENCRYPT_DECRYPT)" + description = "What the key is intended to be used for (ENCRYPT_DECRYPT or SIGN_VERIFY)" type = string default = "ENCRYPT_DECRYPT" }