Skip to content

Commit

Permalink
add missing var.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benbentwo authored Oct 30, 2024
1 parent 9528458 commit 4683cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ data "aws_region" "current" {
}

resource "aws_route53_record" "custom_mail_from_mx" {
count = local.custom_from_subdomain_enabled && custom_from_dns_record_enabled ? 1 : 0
count = local.custom_from_subdomain_enabled && var.custom_from_dns_record_enabled ? 1 : 0

zone_id = var.zone_id
name = join("", aws_ses_domain_mail_from.custom_mail_from[*].mail_from_domain)
Expand Down

0 comments on commit 4683cdb

Please sign in to comment.