first sync
Some checks failed
terraform validation / Terraform (push) Failing after 13s

This commit is contained in:
2025-01-13 20:31:30 +01:00
parent 644d61291d
commit 5575ce52de
5 changed files with 57 additions and 0 deletions

15
records.tf Normal file
View File

@@ -0,0 +1,15 @@
resource "cloudflare_record" "tagobah" {
zone_id = cloudflare_zone.domain_zone.id
name = "tagobah"
value = "82.66.77.254"
type = "A"
proxied = false
}
resource "cloudflare_record" "tatooine" {
zone_id = cloudflare_zone.domain_zone.id
name = "tatooine"
value = "2a01:e0a:a90:e990:9209:d0ff:fe07:ec65
type = "AAAA"
proxied = true
}