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

This commit is contained in:
2025-07-05 20:10:43 +02:00
parent f8fef3d1e2
commit 57d25b73e8

View File

@@ -1,4 +1,4 @@
resource "cloudflare_record" "a-root" { resource "cloudflare_dns_record" "a-root" {
zone_id = var.cloudflare_zone_id zone_id = var.cloudflare_zone_id
comment = "Domain verification record A" comment = "Domain verification record A"
content = var.ip_server_a content = var.ip_server_a
@@ -9,7 +9,7 @@ resource "cloudflare_record" "a-root" {
type = "A" type = "A"
} }
resource "cloudflare_record" "b-root" { resource "cloudflare_dns_record" "b-root" {
zone_id = var.cloudflare_zone_id zone_id = var.cloudflare_zone_id
comment = "Domain verification record B" comment = "Domain verification record B"
content = var.ip_server_a content = var.ip_server_a