Actualiser records_a.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 16s
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 16s
This commit is contained in:
33
records_a.tf
33
records_a.tf
@@ -40,4 +40,37 @@ resource "cloudflare_dns_record" "d-root" {
|
||||
tags = []
|
||||
ttl = 1
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_dns_record" "e-root" {
|
||||
zone_id = var.cloudflare_zone_id
|
||||
comment = "Domain verification record E"
|
||||
content = var.ip_server_a
|
||||
name = "alt1.aspmx.tips-of-mine.org"
|
||||
proxied = false
|
||||
tags = []
|
||||
ttl = 1
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_dns_record" "f-root" {
|
||||
zone_id = var.cloudflare_zone_id
|
||||
comment = "Domain verification record F"
|
||||
content = var.ip_server_a
|
||||
name = "alt2.aspmx.tips-of-mine.org"
|
||||
proxied = false
|
||||
tags = []
|
||||
ttl = 2
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_dns_record" "g-root" {
|
||||
zone_id = var.cloudflare_zone_id
|
||||
comment = "Domain verification record G"
|
||||
content = var.ip_server_a
|
||||
name = "alt3.aspmx.tips-of-mine.org"
|
||||
proxied = false
|
||||
tags = []
|
||||
ttl = 3
|
||||
type = "A"
|
||||
}
|
Reference in New Issue
Block a user