Skip to content

Commit b3ee8d5

Browse files
committed
fix: missing default values for acm certificate attributes
1 parent 40eb4e5 commit b3ee8d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,15 @@ variable "acm_certificates" {
132132
type = map(object({
133133
domain_name = string
134134
subject_alternative_names = optional(list(string), [])
135-
validation_method = optional(string)
136-
key_algorithm = optional(string)
135+
validation_method = optional(string, "DNS")
136+
key_algorithm = optional(string, "RSA_2048")
137137
validation_option = optional(object({
138138
domain_name = string
139139
validation_domain = string
140140
}))
141141
tags = optional(map(string), {})
142142
record_zone_id = string
143-
record_allow_overwrite = optional(bool)
143+
record_allow_overwrite = optional(bool, true)
144144
}))
145145
default = {}
146146
}

0 commit comments

Comments
 (0)