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"
|
|
|
|
}
|
|
|
|
|