From 7c580bbcf0dc571d79f7c78f10dc563b269764b0 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Mon, 4 Aug 2025 19:36:09 +0200 Subject: [PATCH] Actualiser records_mx.tf --- records_mx.tf | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/records_mx.tf b/records_mx.tf index b886509..d875d42 100644 --- a/records_mx.tf +++ b/records_mx.tf @@ -1,3 +1,15 @@ +resource "cloudflare_dns_record" "mx-alt0" { + zone_id = var.cloudflare_zone_id + comment = "Domain verification record J" + 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 H" @@ -50,7 +62,7 @@ resource "cloudflare_dns_record" "mx-alt3" { resource "cloudflare_dns_record" "mx-alt4" { zone_id = var.cloudflare_zone_id - comment = "Domain verification record L" + comment = "Domain verification record J" content = "alt4.aspmx.l.tips-of-mine.org" name = "@" proxied = false