homelab_cloudflared/terraform/variables.tf

20 lines
534 B
HCL

variable "cloudflare_token" {
type = string
description = "The token used to authenticate with Cloudflare (must have DNS:edit Account/Cloudflare Tunnel: edit privs)"
}
variable "account_id" {
type = string
description = "The ID for the Cloudflare account to make the tunnel under"
}
variable "zone_id" {
type = string
description = "The ID for the Cloudflare zone (the domain the tunnel will be running on)"
}
variable "tunnel_secret" {
type = string
default = "The secret for the tunnel"
}