terraform/cloudflare: value -> content
https://github.com/cloudflare/terraform-provider-cloudflare/releases/tag/v4.39.0
This commit is contained in:
parent
1bbe18abd8
commit
be4d90d448
1 changed files with 28 additions and 28 deletions
|
@ -22,126 +22,126 @@ resource "cloudflare_record" "nix-community-org-caa" {
|
|||
resource "cloudflare_record" "nix-community-org-build01-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build01"
|
||||
value = "65.21.139.242"
|
||||
content = "65.21.139.242"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build01-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build01"
|
||||
value = "2a01:4f9:3b:2946::1"
|
||||
content = "2a01:4f9:3b:2946::1"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build02-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build02"
|
||||
value = "65.21.133.211"
|
||||
content = "65.21.133.211"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build02-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build02"
|
||||
value = "2a01:4f9:3b:41d9::1"
|
||||
content = "2a01:4f9:3b:41d9::1"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build03-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build03"
|
||||
value = "162.55.14.99"
|
||||
content = "162.55.14.99"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build03-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build03"
|
||||
value = "2a01:4f8:2190:2698::2"
|
||||
content = "2a01:4f8:2190:2698::2"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build04-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build04"
|
||||
value = "65.109.107.32"
|
||||
content = "65.109.107.32"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build04-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build04"
|
||||
value = "2a01:4f9:3051:3962::2"
|
||||
content = "2a01:4f9:3051:3962::2"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-darwin01-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "darwin01"
|
||||
value = "85.209.53.240"
|
||||
content = "85.209.53.240"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-darwin01-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "darwin01"
|
||||
value = "2a09:9340:808:630::1"
|
||||
content = "2a09:9340:808:630::1"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-darwin02-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "darwin02"
|
||||
value = "85.209.53.203"
|
||||
content = "85.209.53.203"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-darwin02-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "darwin02"
|
||||
value = "2a09:9340:808:60b::1"
|
||||
content = "2a09:9340:808:60b::1"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-web02-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "web02"
|
||||
value = "46.226.105.188"
|
||||
content = "46.226.105.188"
|
||||
type = "A"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-web02-AAAA" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "web02"
|
||||
value = "2001:4b98:dc0:43:f816:3eff:fe99:9fca"
|
||||
content = "2001:4b98:dc0:43:f816:3eff:fe99:9fca"
|
||||
type = "AAAA"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-build-box-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "build-box"
|
||||
value = "build01.nix-community.org"
|
||||
content = "build01.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-darwin-build-box-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "darwin-build-box"
|
||||
value = "darwin01.nix-community.org"
|
||||
content = "darwin01.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-nixpkgs-update-logs-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "nixpkgs-update-logs"
|
||||
value = "build02.nix-community.org"
|
||||
content = "build02.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-buildbot-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "buildbot"
|
||||
value = "build03.nix-community.org"
|
||||
content = "build03.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
|
@ -149,35 +149,35 @@ resource "cloudflare_record" "nix-community-org-buildbot-CNAME" {
|
|||
resource "cloudflare_record" "nix-community-org-docker-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "docker"
|
||||
value = "zimbatm.docker.scarf.sh"
|
||||
content = "zimbatm.docker.scarf.sh"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-hydra-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "hydra"
|
||||
value = "build03.nix-community.org"
|
||||
content = "build03.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-nur-update-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "nur-update"
|
||||
value = "build03.nix-community.org"
|
||||
content = "build03.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-monitoring-CNAME" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "monitoring"
|
||||
value = "web02.nix-community.org"
|
||||
content = "web02.nix-community.org"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-apex-A" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "@"
|
||||
value = "nix-community.github.io"
|
||||
content = "nix-community.github.io"
|
||||
type = "CNAME"
|
||||
proxied = false
|
||||
}
|
||||
|
@ -185,7 +185,7 @@ resource "cloudflare_record" "nix-community-org-apex-A" {
|
|||
resource "cloudflare_record" "nix-community-org-apex-TXT" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "@"
|
||||
value = "v=spf1 include:_mailcust.gandi.net -all"
|
||||
content = "v=spf1 include:_mailcust.gandi.net -all"
|
||||
type = "TXT"
|
||||
}
|
||||
|
||||
|
@ -196,7 +196,7 @@ resource "cloudflare_record" "nix-community-org-apex-MX" {
|
|||
}
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "@"
|
||||
value = each.key
|
||||
content = each.key
|
||||
type = "MX"
|
||||
priority = each.value
|
||||
}
|
||||
|
@ -204,14 +204,14 @@ resource "cloudflare_record" "nix-community-org-apex-MX" {
|
|||
resource "cloudflare_record" "nix-community-org-github-challenge-TXT" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "_github-challenge-nix-community-org"
|
||||
value = "2eee7c1945"
|
||||
content = "2eee7c1945"
|
||||
type = "TXT"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "nix-community-org-github-pages-challenge-TXT" {
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = "_github-pages-challenge-nix-community.nix-community.org."
|
||||
value = "6d236784300b9b1e80fdc496b7bfce"
|
||||
content = "6d236784300b9b1e80fdc496b7bfce"
|
||||
type = "TXT"
|
||||
}
|
||||
|
||||
|
@ -220,6 +220,6 @@ resource "cloudflare_record" "nix-community-org-github-pages" {
|
|||
|
||||
zone_id = local.nix_community_zone_id
|
||||
name = each.value
|
||||
value = "nix-community.github.io"
|
||||
content = "nix-community.github.io"
|
||||
type = "CNAME"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue