Update variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 7s

This commit is contained in:
2025-11-19 17:34:27 +01:00
parent e366b58d73
commit 265c9e668b

View File

@@ -452,4 +452,38 @@ variable "cloudflare_tunnel_warp_connector_ovh_id" {
variable "cloudflare_team_name" {
description = "Name of the Team in Cloudflare, essentially zero-trust org name"
type = string
}
#======================================================
# CLOUDFLARE DNS SUBDOMAIN CONFIGURATION
#======================================================
variable "cloudflare_subdomain_ssh" {
description = "Name of the subdomain for ssh public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_vnc" {
description = "Name of the subdomain for VNC public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_web" {
description = "Name of the subdomain for web public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_web_sensitive" {
description = "Name of the subdomain for web sensitive public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_rdp" {
description = "Name of the subdomain for rdp browser rendered public hostname"
type = string
}
variable "cloudflare_subdomain_training_status" {
description = "Name of the subdomain for training status admin portal (OPTIONAL: only needed if using optional-cloudflare-apps.tf)"
type = string
}