2024-02-21 08:39:35 +08:00
|
|
|
variable "email-addresses" {
|
|
|
|
type = set(string)
|
|
|
|
description = "Set of email addresses to receive SNS notifications"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "days-before-expiry" {
|
|
|
|
type = number
|
2024-02-21 08:42:56 +08:00
|
|
|
description = "ACM DaysBeforeExpiry account configuration"
|
2024-02-21 08:39:35 +08:00
|
|
|
default = 45
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "res-prefix" {
|
|
|
|
type = string
|
|
|
|
description = "Resource name prefix"
|
|
|
|
default = "aws"
|
|
|
|
}
|
|
|
|
|
2024-02-21 13:52:03 +08:00
|
|
|
variable "sns-kms-key-arn" {
|
|
|
|
type = string
|
2024-02-21 14:06:01 +08:00
|
|
|
description = "ARN of KMS key used for SNS encryption. This key must allow events.amazonaws.com"
|
2024-02-21 13:52:03 +08:00
|
|
|
default = null
|
|
|
|
}
|