update variable all file
All checks were successful
terraform validation / Terraform (push) Successful in 11s

This commit is contained in:
2025-01-14 07:45:25 +01:00
parent f16f53a502
commit 33ff1d1604
4 changed files with 12 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
resource "cloudflare_record" "terraform" {
zone_id = "${var.cloudflare_zone}"
zone_id = var.cloudflare_zone
name = "terraform"
value = "82.66.77.254"
type = "A"
@@ -8,7 +8,7 @@ resource "cloudflare_record" "terraform" {
}
resource "cloudflare_record" "a-root" {
zone_id = "${var.cloudflare_zone}"
zone_id = var.cloudflare_zone
name = "@"
value = var.main_server
type = "A"