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.

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