45 lines
1.3 KiB
HCL
45 lines
1.3 KiB
HCL
# ---------------------------------------------------------------------------
|
|
# Amazon ACM variables
|
|
# ---------------------------------------------------------------------------
|
|
|
|
variable "domain_name" {
|
|
description = "A domain name for which the certificate should be issued"
|
|
type = string
|
|
}
|
|
|
|
variable "subject_alternative_names" {
|
|
description = "A list of domains that should be SANs in the issued certificate"
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "validation_method" {
|
|
description = "Which method to use for validation. DNS or EMAIL are valid, NONE can be used for certificates that were imported into ACM and then into Terraform."
|
|
type = string
|
|
default = "DNS"
|
|
}
|
|
|
|
variable "validation_allow_overwrite_records" {
|
|
description = "Whether to allow overwrite of Route53 records"
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "A mapping of tags to assign to the resource"
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "dns_ttl" {
|
|
description = "The TTL of DNS recursive resolvers to cache information about this record."
|
|
type = number
|
|
default = 60
|
|
}
|
|
|
|
variable "validation_timeout" {
|
|
description = "Define maximum timeout to wait for the validation to complete"
|
|
type = string
|
|
default = null
|
|
}
|