UPD: updated variable comment for sns-kms-key-arn

This commit is contained in:
xpk 2024-02-21 14:06:01 +08:00
parent 58148f895d
commit 9371ec8e5b
Signed by: xpk
GPG Key ID: CD4FF6793F09AB86
2 changed files with 7 additions and 7 deletions

View File

@ -68,11 +68,11 @@ An error occurred (ValidationException) when calling the PutAccountConfiguration
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
|------|----------------------------------------------------------------------------------|------|---------|:--------:|
| days-before-expiry | ACM DaysBeforeExpiry account configuration | `number` | `45` | no |
| email-addresses | Set of email addresses to receive SNS notifications | `set(string)` | n/a | yes |
| res-prefix | Resource name prefix | `string` | `"aws"` | no |
| sns-kms-key-arn | ARN of KMS key used for SNS encryption | `string` | `null` | no |
| sns-kms-key-arn | ARN of KMS key used for SNS encryption. This key must allow events.amazonaws.com | `string` | `null` | no |
## Outputs

View File

@ -17,6 +17,6 @@ variable "res-prefix" {
variable "sns-kms-key-arn" {
type = string
description = "ARN of KMS key used for SNS encryption"
description = "ARN of KMS key used for SNS encryption. This key must allow events.amazonaws.com"
default = null
}