| Add Cloudflare provisioning and deploy tooling e4c5d34 Romain Gautier 13h ago | 1 | variable "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 | |
| 9 | variable "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 | } |