Actualiser records_cname.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s
This commit is contained in:
@@ -18,4 +18,62 @@ resource "cloudflare_dns_record" "cname-mail" {
|
|||||||
tags = []
|
tags = []
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_dns_record" "cname-mx-aspmx1" {
|
||||||
|
zone_id = var.cloudflare_zone_id
|
||||||
|
comment = "Domain verification record G"
|
||||||
|
content = cloudflare_dns_record.b-root.name
|
||||||
|
name = "aspmx.l"
|
||||||
|
proxied = false
|
||||||
|
tags = []
|
||||||
|
ttl = 3600
|
||||||
|
type = "CNAME"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_dns_record" "cname-alt1-aspmx-l" {
|
||||||
|
zone_id = var.cloudflare_zone_id
|
||||||
|
comment = "Domain verification record H"
|
||||||
|
content = cloudflare_dns_record.b-root.name
|
||||||
|
name = "alt1.aspmx.l"
|
||||||
|
proxied = false
|
||||||
|
tags = []
|
||||||
|
ttl = 3600
|
||||||
|
type = "CNAME"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_dns_record" "mx-alt2" {
|
||||||
|
zone_id = var.cloudflare_zone_id
|
||||||
|
comment = "Domain verification record I"
|
||||||
|
content = "alt2.aspmx.l.tips-of-mine.org"
|
||||||
|
name = "@"
|
||||||
|
proxied = false
|
||||||
|
tags = []
|
||||||
|
ttl = 300
|
||||||
|
type = "MX"
|
||||||
|
priority = 40
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_dns_record" "mx-alt3" {
|
||||||
|
zone_id = var.cloudflare_zone_id
|
||||||
|
comment = "Domain verification record J"
|
||||||
|
content = "alt3.aspmx.l.tips-of-mine.org"
|
||||||
|
name = "@"
|
||||||
|
proxied = false
|
||||||
|
tags = []
|
||||||
|
ttl = 300
|
||||||
|
type = "MX"
|
||||||
|
priority = 40
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_dns_record" "mx-alt4" {
|
||||||
|
zone_id = var.cloudflare_zone_id
|
||||||
|
comment = "Domain verification record K"
|
||||||
|
content = "alt4.aspmx.l.tips-of-mine.org"
|
||||||
|
name = "@"
|
||||||
|
proxied = false
|
||||||
|
tags = []
|
||||||
|
ttl = 300
|
||||||
|
type = "MX"
|
||||||
|
priority = 40
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user