File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -264,13 +264,13 @@ module "acm" {
264264 source = " ./modules/acm"
265265
266266 providers = {
267- aws = aws
268- aws.dns = aws.dns
267+ aws = aws
268+ aws.dns = aws.dns
269269 }
270270 route53_assume_role_arn = var. route53_assume_role_arn
271+ region = var. region
271272
272273 for_each = var. create_acm ? var. acm_certificates : {}
273-
274274 # ACM Certificate
275275 certificate_domain_name = each. value . domain_name
276276 certificate_subject_alternative_names = try (each. value . subject_alternative_names , null )
@@ -281,8 +281,7 @@ module "acm" {
281281 # Route53 Record
282282 record_zone_id = try (each. value . record_zone_id , null )
283283 record_allow_overwrite = try (each. value . record_allow_overwrite , null )
284-
285- tags = try (each. value . tags , {})
284+ tags = try (each. value . tags , {})
286285}
287286
288287# ###############################################################################
You can’t perform that action at this time.
0 commit comments