Ajouter records_loc.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 13s

This commit is contained in:
2025-08-05 08:05:26 +02:00
parent 3fcc1f2dd1
commit 1aaf26d8f2

23
records_loc.tf Normal file
View File

@@ -0,0 +1,23 @@
resource "cloudflare_dns_record" "loc-root" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record Z"
data = {
altitude = "8m"
lat_degrees = "50"
lat_minutes = "41"
lat_seconds = "28"
lat_direction = "N"
long_degrees = "3"
long_minutes = "12"
long_seconds = "3"
long_direction = "E"
precision_horz = "8m"
precision_vert = "8m"
size = "8m"
}
name = "@"
proxied = false
tags = []
ttl = 3600
type = "LOC"
}