Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
datalek committed Mar 18, 2024
1 parent 921a2c2 commit 70b28d2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions apps/infrastructure/src/route53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,28 +138,28 @@ module "active_campaign_dns_records" {

records = [
{
name = "acdkim1._domainkey"
type = "CNAME"
name = "acdkim1._domainkey"
type = "CNAME"
records = ["dkim.acdkim1.acems1.com"]
ttl = 3600
ttl = 3600
},
{
name = "acdkim2._domainkey"
type = "CNAME"
name = "acdkim2._domainkey"
type = "CNAME"
records = ["dkim.acdkim2.acems1.com"]
ttl = 3600
ttl = 3600
},
{
name = "em-3628291"
type = "CNAME"
name = "em-3628291"
type = "CNAME"
records = ["cmd.emsend1.com"]
ttl = 3600
ttl = 3600
},
{
name = "_dmarc"
type = "TXT"
name = "_dmarc"
type = "TXT"
records = ["v=DMARC1;p=none;"]
ttl = 3600
ttl = 3600
}
]
}

0 comments on commit 70b28d2

Please sign in to comment.