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"
}
|