We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40eb4e5 commit b3ee8d5Copy full SHA for b3ee8d5
variables.tf
@@ -132,15 +132,15 @@ variable "acm_certificates" {
132
type = map(object({
133
domain_name = string
134
subject_alternative_names = optional(list(string), [])
135
- validation_method = optional(string)
136
- key_algorithm = optional(string)
+ validation_method = optional(string, "DNS")
+ key_algorithm = optional(string, "RSA_2048")
137
validation_option = optional(object({
138
139
validation_domain = string
140
}))
141
tags = optional(map(string), {})
142
record_zone_id = string
143
- record_allow_overwrite = optional(bool)
+ record_allow_overwrite = optional(bool, true)
144
145
default = {}
146
}
0 commit comments