File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
terraform-modules/aws/istio Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -96,4 +96,5 @@ module "acm_request_certificate" {
9696 process_domain_validation_options = true
9797 ttl = var. acm_ttl
9898 subject_alternative_names = var. acm_subject_alternative_names
99+ zone_id = var. acm_route53_zone_id
99100}
Original file line number Diff line number Diff line change @@ -132,8 +132,14 @@ variable "acm_ttl" {
132132 description = " The certifcate TTL"
133133}
134134
135- variable acm_subject_alternative_names {
135+ variable " acm_subject_alternative_names" {
136136 type = list (string )
137137 default = [" *.example.com" ]
138138 description = " Subject alternative names for the cert (SAN)"
139139}
140+
141+ variable "acm_route53_zone_id" {
142+ type = string
143+ default = " "
144+ description = " The route53 zone ID to perform DNS validation on the ACM cert"
145+ }
You can’t perform that action at this time.
0 commit comments