Actualiser records_a.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 14s

This commit is contained in:
2025-08-04 20:25:13 +02:00
parent ba3610e256
commit 21b8ea9063

View File

@@ -30,3 +30,14 @@ resource "cloudflare_dns_record" "c-root" {
ttl = 3600
type = "A"
}
resource "cloudflare_dns_record" "d-root" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record D"
content = var.ip_server_a
name = "aspmx.tips-of-mine.org"
proxied = false
tags = []
ttl = 1
type = "A"
}