tout est fonctionnel
All checks were successful
terraform validation / Terraform (push) Successful in 11s
All checks were successful
terraform validation / Terraform (push) Successful in 11s
This commit is contained in:
26
records_a.tf
26
records_a.tf
@@ -1,17 +1,21 @@
|
||||
resource "cloudflare_record" "terraform" {
|
||||
zone_id = var.cloudflare_zone
|
||||
name = "terraform"
|
||||
value = "82.66.77.254"
|
||||
type = "A"
|
||||
resource "cloudflare_record" "a-root" {
|
||||
zone_id = var.cloudflare_zone_id
|
||||
comment = "Domain verification record A"
|
||||
content = var.main_server
|
||||
name = "a-root.tips-of-mine.com"
|
||||
proxied = false
|
||||
tags = []
|
||||
ttl = 1
|
||||
proxied = true
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "a-root" {
|
||||
zone_id = var.cloudflare_zone
|
||||
resource "cloudflare_record" "b-root" {
|
||||
zone_id = var.cloudflare_zone_id
|
||||
comment = "Domain verification record B"
|
||||
content = var.main_server
|
||||
name = "@"
|
||||
value = var.main_server
|
||||
type = "A"
|
||||
ttl = 3600
|
||||
proxied = false
|
||||
tags = []
|
||||
ttl = 3600
|
||||
type = "A"
|
||||
}
|
Reference in New Issue
Block a user