mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 06:57:47 +01:00
31 lines
646 B
HCL
31 lines
646 B
HCL
variable "cloudflare_api_token" {
|
|
type = string
|
|
description = "Cloudflare API token"
|
|
sensitive = true
|
|
nullable = false
|
|
}
|
|
|
|
variable "cloudflare_tunnel_name" {
|
|
type = string
|
|
description = "Cloudflare Tunnel Name"
|
|
default = "tofu-tunnel"
|
|
nullable = false
|
|
}
|
|
variable "cloudflare_email" {
|
|
type = string
|
|
description = "Cloudflare Email"
|
|
nullable = false
|
|
}
|
|
|
|
variable "cloudflare_domain" {
|
|
type = string
|
|
description = "Cloudflare Domain"
|
|
nullable = false
|
|
}
|
|
|
|
variable "cloudflare_account_id" {
|
|
type = string
|
|
description = "Cloudflare Account ID"
|
|
nullable = false
|
|
}
|