Files
homelab-opentofu/environments/network/variables.tf
Yuris Cakranegara cac26957a8 first commit
2025-06-06 12:01:54 +10:00

22 lines
467 B
HCL

variable "cloudflare_api_token" {
description = "API token for Cloudflare with the necessary permissions"
type = string
sensitive = true
}
variable "cloudflare_account_id" {
description = "Cloudflare account ID"
type = string
}
variable "cloudflare_zone_id" {
description = "Cloudflare zone ID for the domain"
type = string
}
variable "domain" {
description = "Base domain name (e.g., example.com)"
type = string
}