terraform.aws-baseline-infra/modules/ManagementGovernance/acm-cert-expiry-notice/variables.tf

22 lines
552 B
Terraform
Raw Normal View History

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"
}
variable "sns-kms-key-arn" {
type = string
description = "ARN of KMS key used for SNS encryption. This key must allow events.amazonaws.com"
default = null
}