From 757b3d15fb379aa0563ca55bf5ffa82e4ac2ccc0 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Mon, 4 Aug 2025 20:30:27 +0200 Subject: [PATCH] Actualiser records_a.tf --- records_a.tf | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/records_a.tf b/records_a.tf index 1308384..dd62651 100644 --- a/records_a.tf +++ b/records_a.tf @@ -40,4 +40,37 @@ resource "cloudflare_dns_record" "d-root" { tags = [] ttl = 1 type = "A" +} + +resource "cloudflare_dns_record" "e-root" { + zone_id = var.cloudflare_zone_id + comment = "Domain verification record E" + content = var.ip_server_a + name = "alt1.aspmx.tips-of-mine.org" + proxied = false + tags = [] + ttl = 1 + type = "A" +} + +resource "cloudflare_dns_record" "f-root" { + zone_id = var.cloudflare_zone_id + comment = "Domain verification record F" + content = var.ip_server_a + name = "alt2.aspmx.tips-of-mine.org" + proxied = false + tags = [] + ttl = 2 + type = "A" +} + +resource "cloudflare_dns_record" "g-root" { + zone_id = var.cloudflare_zone_id + comment = "Domain verification record G" + content = var.ip_server_a + name = "alt3.aspmx.tips-of-mine.org" + proxied = false + tags = [] + ttl = 3 + type = "A" } \ No newline at end of file