variables.tf
1 variable "stage" { 2 description = "Name of stage, used for DNS entry for this environment." 3 type = string 4 } 5 6 variable "domain" { 7 description = "Name of domain for this environment." 8 type = string 9 } 10 11 variable "zone_id" { 12 description = "ID of the zone in AWS Route53." 13 type = string 14 } 15 16 variable "sans" { 17 description = "List of Subject Alternative Names." 18 type = list(string) 19 default = [] 20 } 21 22 variable "route53_zone_id" { 23 description = "ID of the zone in AWS Route53." 24 type = string 25 }