add towerops
This commit is contained in:
parent
ab1afaebf0
commit
0238983be1
1 changed files with 38 additions and 0 deletions
38
terraform/dns_towerops.tf
Normal file
38
terraform/dns_towerops.tf
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# DNSimple DNS records for towerops.net
|
||||
# SendGrid email authentication records
|
||||
|
||||
# SendGrid domain CNAME
|
||||
resource "dnsimple_zone_record" "towerops_dnsimple_sendgrid_domain" {
|
||||
zone_name = "towerops.net"
|
||||
name = "em6505"
|
||||
type = "CNAME"
|
||||
value = "u177982.wl233.sendgrid.net"
|
||||
ttl = 600
|
||||
}
|
||||
|
||||
# SendGrid DKIM key 1
|
||||
resource "dnsimple_zone_record" "towerops_dnsimple_sendgrid_dkim1" {
|
||||
zone_name = "towerops.net"
|
||||
name = "s1._domainkey"
|
||||
type = "CNAME"
|
||||
value = "s1.domainkey.u177982.wl233.sendgrid.net"
|
||||
ttl = 600
|
||||
}
|
||||
|
||||
# SendGrid DKIM key 2
|
||||
resource "dnsimple_zone_record" "towerops_dnsimple_sendgrid_dkim2" {
|
||||
zone_name = "towerops.net"
|
||||
name = "s2._domainkey"
|
||||
type = "CNAME"
|
||||
value = "s2.domainkey.u177982.wl233.sendgrid.net"
|
||||
ttl = 600
|
||||
}
|
||||
|
||||
# DMARC policy
|
||||
resource "dnsimple_zone_record" "towerops_dnsimple_dmarc" {
|
||||
zone_name = "towerops.net"
|
||||
name = "_dmarc"
|
||||
type = "TXT"
|
||||
value = "v=DMARC1; p=none;"
|
||||
ttl = 600
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue