map
This commit is contained in:
0
cloudflare/zones/ztariq/backend.tf
Normal file
0
cloudflare/zones/ztariq/backend.tf
Normal file
83
cloudflare/zones/ztariq/main.tf
Normal file
83
cloudflare/zones/ztariq/main.tf
Normal file
@@ -0,0 +1,83 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
cloudflare = {
|
||||
source = "cloudflare/cloudflare"
|
||||
version = "~> 5"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "cloudflare" {
|
||||
api_token = var.cloudflare_apitoken
|
||||
}
|
||||
|
||||
locals {
|
||||
ztariq_records = {
|
||||
# --- A Records ---
|
||||
beszel = { name = "beszel", type = "A", content = "198.23.169.195", ttl = 1, proxied = true }
|
||||
ca = { name = "ca", type = "A", content = "154.12.117.17", ttl = 1, proxied = false }
|
||||
nc = { name = "nc", type = "A", content = "154.12.117.17", ttl = 1, proxied = false }
|
||||
nl = { name = "nl", type = "A", content = "62.84.172.70", ttl = 1, proxied = false }
|
||||
reg = { name = "reg", type = "A", content = "154.12.117.17", ttl = 1, proxied = false }
|
||||
tea = { name = "tea", type = "A", content = "198.23.169.195", ttl = 1, proxied = false }
|
||||
uk = { name = "uk", type = "A", content = "185.139.7.37", ttl = 1, proxied = false }
|
||||
uk2 = { name = "uk2", type = "A", content = "154.41.135.47", ttl = 1, proxied = false }
|
||||
uptime = { name = "uptime", type = "A", content = "198.23.169.195", ttl = 1, proxied = true }
|
||||
us = { name = "us", type = "A", content = "198.23.169.195", ttl = 1, proxied = false }
|
||||
root_a = { name = "@", type = "A", content = "185.139.7.37", ttl = 1, proxied = true }
|
||||
# --- AAAA Records ---
|
||||
nl_aaaa = { name = "nl", type = "AAAA", content = "2a12:bec4:1821:f0::a", ttl = 1, proxied = false }
|
||||
root_uk_aaaa = { name = "@", type = "AAAA", content = "2a12:ab46:5344:fd::a", ttl = 1, proxied = true }
|
||||
root_uk_uk = { name = "uk", type = "AAAA", content = "2a12:ab46:5344:fd::a", ttl = 1, proxied = false }
|
||||
|
||||
# --- CNAME Records ---
|
||||
autodiscover = { name = "autodiscover", type = "CNAME", content = "eu1.workspace.org.", ttl = 360, proxied = false }
|
||||
mail = { name = "mail", type = "CNAME", content = "eu1.workspace.org.", ttl = 360, proxied = false }
|
||||
|
||||
# --- MX Records ---
|
||||
mx_root = { name = "@", type = "MX", content = "eu1.workspace.org.", priority = 10, ttl = 360 }
|
||||
|
||||
# --- TXT Records ---
|
||||
dmarc = {
|
||||
name = "_dmarc"
|
||||
type = "TXT"
|
||||
content = "v=DMARC1; p=quarantine; rua=mailto:postmaster@ztariq.com; ruf=mailto:postmaster@ztariq.com; fo=1; adkim=s; aspf=s"
|
||||
ttl = 3600
|
||||
}
|
||||
dkim = {
|
||||
name = "nd8ddf6995beebee4._domainkey"
|
||||
type = "TXT"
|
||||
content = "v=DKIM1; k=rsa; h=sha256; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoi3yX1W5V6a9QbEXo00k9JCZ8Vew5rQEanHLIY0cOxCauAIZZIrhQsexZ0j45EFVtfMrBHeddUtolVSSDHvvJg49HzJqWsKOsN061uBgmdN69JEtzme04pRmz/7H+3Y0QDUSYDd+ffYzWaouplFqGuhYkQ5QG2J1JzofcetuAkQICIgWStcOO+av5WoyTdxfqsY64d/XFP4PZJJHX0XA1P2YaSuyNF5c7nv/+a9A6F5+OrgZhFNNWjUurkKKhFzhbR82BUPTXVuG3EI5wSQcIYjhXgINagsmvVyPL1XP584qtnq0ScGysSkh0T3Vhg/Kob9eHX1du7mZj7G0z3PHmwIDAQAB"
|
||||
ttl = 360
|
||||
}
|
||||
workspace_verification = {
|
||||
name = "workspace-verification"
|
||||
type = "TXT"
|
||||
content = "f23716dd-2ad6-4dd4-8867-112e3c4c318d"
|
||||
ttl = 360
|
||||
}
|
||||
spf = {
|
||||
name = "@"
|
||||
type = "TXT"
|
||||
content = "v=spf1 include:_spf.workspace.org -all"
|
||||
ttl = 360
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
resource "cloudflare_dns_record" "ztariq" {
|
||||
for_each = local.ztariq_records
|
||||
|
||||
zone_id = var.zone_id
|
||||
name = each.value.name
|
||||
type = each.value.type
|
||||
content = each.value.content
|
||||
ttl = each.value.ttl
|
||||
|
||||
proxied = lookup(each.value, "proxied", null)
|
||||
priority = lookup(each.value, "priority", null)
|
||||
|
||||
lifecycle {
|
||||
prevent_destroy = false
|
||||
}
|
||||
}
|
||||
648
cloudflare/zones/ztariq/terraform.tfstate
Normal file
648
cloudflare/zones/ztariq/terraform.tfstate
Normal file
@@ -0,0 +1,648 @@
|
||||
{
|
||||
"version": 4,
|
||||
"terraform_version": "1.13.3",
|
||||
"serial": 67,
|
||||
"lineage": "86dbab99-bb75-e967-6f01-8134ccc693e6",
|
||||
"outputs": {},
|
||||
"resources": [
|
||||
{
|
||||
"mode": "managed",
|
||||
"type": "cloudflare_dns_record",
|
||||
"name": "ztariq",
|
||||
"provider": "provider[\"registry.terraform.io/cloudflare/cloudflare\"]",
|
||||
"instances": [
|
||||
{
|
||||
"index_key": "autodiscover",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "eu1.workspace.org.",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "1da92323f9f6e5a00e02df0edac16554",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-09T08:38:58Z",
|
||||
"name": "autodiscover.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": false,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 360,
|
||||
"type": "CNAME",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "beszel",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "198.23.169.195",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "e1824f42449cb3fed3024633819bd345",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "beszel.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": true,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "ca",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "154.12.117.17",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "8eedfb649e973cacfcb117155ccbca61",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "ca.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "dkim",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "v=DKIM1; k=rsa; h=sha256; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoi3yX1W5V6a9QbEXo00k9JCZ8Vew5rQEanHLIY0cOxCauAIZZIrhQsexZ0j45EFVtfMrBHeddUtolVSSDHvvJg49HzJqWsKOsN061uBgmdN69JEtzme04pRmz/7H+3Y0QDUSYDd+ffYzWaouplFqGuhYkQ5QG2J1JzofcetuAkQICIgWStcOO+av5WoyTdxfqsY64d/XFP4PZJJHX0XA1P2YaSuyNF5c7nv/+a9A6F5+OrgZhFNNWjUurkKKhFzhbR82BUPTXVuG3EI5wSQcIYjhXgINagsmvVyPL1XP584qtnq0ScGysSkh0T3Vhg/Kob9eHX1du7mZj7G0z3PHmwIDAQAB",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "e7d739b620e7de9ddf4acc1d35d9104e",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "nd8ddf6995beebee4._domainkey.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": false,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 360,
|
||||
"type": "TXT",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "dmarc",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "v=DMARC1; p=quarantine; rua=mailto:postmaster@ztariq.com; ruf=mailto:postmaster@ztariq.com; fo=1; adkim=s; aspf=s",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "d687c8ca6f4cd2057d1607c77797b8dd",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "_dmarc.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": false,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 3600,
|
||||
"type": "TXT",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "mail",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "eu1.workspace.org.",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "8adb370489931da4b8726c8142b468b2",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-09T08:38:58Z",
|
||||
"name": "mail.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": false,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 360,
|
||||
"type": "CNAME",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "mx_root",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "eu1.workspace.org.",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "1853b26b8d52a41c5ef0f4212c41696f",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "ztariq.com",
|
||||
"priority": 10,
|
||||
"proxiable": false,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 360,
|
||||
"type": "MX",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "nc",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "154.12.117.17",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "9188fe0d253b8094f19320d4afff3d9a",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "nc.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "nl",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "62.84.172.70",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "18b04c8ced7b1ae3bcf5fc873e1fbdf8",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "nl.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "nl_aaaa",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "2a12:bec4:1821:f0::a",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "f6bffdbdb7f94832d39186a147687fe8",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "nl.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "AAAA",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "reg",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "154.12.117.17",
|
||||
"created_on": "2025-10-09T08:38:58Z",
|
||||
"data": null,
|
||||
"id": "2f92ab4eb7475d3c9b678f49abbc9ae3",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-09T08:38:58Z",
|
||||
"name": "reg",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "root_a",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "185.139.7.37",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "1d1e80fd88cbed6b00ddf0ac4d856e0f",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-04T13:37:26Z",
|
||||
"name": "ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": true,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "root_uk_aaaa",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "2a12:ab46:5344:fd::a",
|
||||
"created_on": "2025-10-04T13:30:31Z",
|
||||
"data": null,
|
||||
"id": "69fa5646418278ab2d865b509349f85d",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-04T14:52:55Z",
|
||||
"name": "ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": true,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "AAAA",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "root_uk_uk",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "2a12:ab46:5344:fd::a",
|
||||
"created_on": "2025-10-04T13:32:56Z",
|
||||
"data": null,
|
||||
"id": "041c4d5e021eeb72b16ce82b3215d114",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-04T14:52:55Z",
|
||||
"name": "uk.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "AAAA",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "spf",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "v=spf1 include:_spf.workspace.org -all",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "a7dc36bb0d2542c1d9534e70af352a70",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": false,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 360,
|
||||
"type": "TXT",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "tea",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "198.23.169.195",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "12be831a0a9cfcaac555f82acbabec70",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "tea.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "uk",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "185.139.7.37",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "c932fd20294dd7e63dd49bcbb42dd46d",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "uk.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "uk2",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "154.41.135.47",
|
||||
"created_on": "2025-10-05T13:44:38Z",
|
||||
"data": null,
|
||||
"id": "3e85a02d4d60fdd2746eded881daf70b",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-05T14:03:16Z",
|
||||
"name": "uk2.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "uptime",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "198.23.169.195",
|
||||
"created_on": "2025-10-03T10:41:38Z",
|
||||
"data": null,
|
||||
"id": "79f47fe2d5ec8575b215fddd6bbb1f6b",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:38Z",
|
||||
"name": "uptime.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": true,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "us",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "198.23.169.195",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "3532e6cb018f85319c15430387aba340",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "us.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": true,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 1,
|
||||
"type": "A",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
},
|
||||
{
|
||||
"index_key": "workspace_verification",
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"comment": null,
|
||||
"comment_modified_on": null,
|
||||
"content": "f23716dd-2ad6-4dd4-8867-112e3c4c318d",
|
||||
"created_on": "2025-10-03T10:41:37Z",
|
||||
"data": null,
|
||||
"id": "396e522c02d0fe0b716f174d2cdca4e3",
|
||||
"meta": "{}",
|
||||
"modified_on": "2025-10-03T10:41:37Z",
|
||||
"name": "workspace-verification.ztariq.com",
|
||||
"priority": null,
|
||||
"proxiable": false,
|
||||
"proxied": false,
|
||||
"settings": {
|
||||
"flatten_cname": null,
|
||||
"ipv4_only": null,
|
||||
"ipv6_only": null
|
||||
},
|
||||
"tags": [],
|
||||
"tags_modified_on": null,
|
||||
"ttl": 360,
|
||||
"type": "TXT",
|
||||
"zone_id": "0f670677e7c36e9fe8f8e6a1d1c72cbf"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"identity_schema_version": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"check_results": null
|
||||
}
|
||||
15
cloudflare/zones/ztariq/variables.tf
Normal file
15
cloudflare/zones/ztariq/variables.tf
Normal file
@@ -0,0 +1,15 @@
|
||||
variable "cloudflare_apitoken" {
|
||||
description = "Cloudflare API token"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "zone_id" {
|
||||
description = "Cloudflare zone ID"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "current_ip" {
|
||||
description = "Current public IP address"
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user