From 265c9e668b0901788679b32974ebe0f50c05f246 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Wed, 19 Nov 2025 17:34:27 +0100 Subject: [PATCH] Update variables.tf --- variables.tf | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/variables.tf b/variables.tf index a455584..8815770 100644 --- a/variables.tf +++ b/variables.tf @@ -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 } \ No newline at end of file