mykiwi/mykiwi.blogpublic Fork 0
1ce0eef91b735b1a8e1c1a3977d48214117e2921
Commits
Clone
git clone https://git.rickub.com/mykiwi/mykiwi.blog.git
git clone ssh://git@rickub.com/mykiwi/mykiwi.blog.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Add Cloudflare provisioning and deploy tooling e4c5d34 · on 1ce0eef91b735b1a8e1c1a3977d48214117e2921 · Romain Gautier · 13h ago
variables.tf · 13 lines · 524 BTerraform Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
variable "cloudflare_account_id" {
  # Not a secret - it's just an identifier (visible in any Cloudflare
  # dashboard URL for this account), meaningless without the API token.
  description = "Cloudflare account ID that owns the zone and will own the Pages projects."
  type        = string
  default     = "d8149974c9ab26867fdc9cd579711d7d"
}

variable "zone_name" {
  description = "Root domain already managed in Cloudflare (must exist as a zone before applying)."
  type        = string
  default     = "mykiwi.blog"
}