Files
terraform-cloudflare-dns-zo…/records_mx.tf
Hubert Cornet 22b37fcbf9
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 16s
Actualiser records_mx.tf
2025-08-04 20:44:40 +02:00

37 lines
783 B
HCL

resource "cloudflare_dns_record" "mx-alt0" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record L"
content = "tips-of-mine.org"
name = "@"
proxied = false
tags = []
ttl = 300
type = "MX"
priority = 10
}
resource "cloudflare_dns_record" "mx-aspmx" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record M"
content = "aspmx.tips-of-mine.org"
name = "@"
proxied = false
tags = []
ttl = 300
type = "MX"
priority = 20
}
resource "cloudflare_dns_record" "mx-alt1" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record N"
content = "alt1.aspmx.tips-of-mine.org"
name = "@"
proxied = false
tags = []
ttl = 300
type = "MX"
priority = 30
}