# Cloudflare API token — required for all provider operations. # Set via: export TF_VAR_cloudflare_api_token="..." variable "cloudflare_api_token" { description = "Cloudflare API token with Workers, D1, Pages, and DNS edit permissions." type = string sensitive = true } # Cloudflare account ID — required for Workers, D1, and Pages resources. # Set via: export TF_VAR_cloudflare_account_id="..." variable "cloudflare_account_id" { description = "Cloudflare account ID where quotesdb resources are provisioned." type = string } # Cloudflare zone ID for elijah.run — required for DNS records and Worker routes. # Set via: export TF_VAR_cloudflare_zone_id="..." variable "cloudflare_zone_id" { description = "Cloudflare zone ID for the elijah.run domain." type = string } # Production domain for the quotesdb application. variable "domain" { description = "Production domain where quotesdb is hosted (e.g. quotes.elijah.run)." type = string default = "quotes.elijah.run" }