You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
386 B
HCL

variable "sns_topic_arn" {
description = "ARN of the SNS topic to recieve notifications"
default = ""
}
variable "tags" {
default = {}
type = map
description = "Optional set of tags to apply to the infrastructure"
}
variable "prefix" {
default = "security"
description = "String to prefix to all resources"
}
variable "log_retention" {
default = 90
}