Model/deployment/terraform/modules/acm_certificate/variables.tf
2026-05-19 16:35:09 +00:00

16 lines
No EOL
373 B
HCL

variable "domain_name" {
description = "Primary domain name for the certificate"
type = string
}
variable "subject_alternative_names" {
description = "Additional domains for the certificate"
type = list(string)
default = []
}
variable "tags" {
description = "Tags to apply to the certificate"
type = map(string)
default = {}
}