Skip to content

Commit f70a44a

Browse files
author
rahul-infra
committed
fix : formatted main file.
1 parent ddfdaca commit f70a44a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

main.tf

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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
################################################################################

0 commit comments

Comments
 (0)