correct : subdomain
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 16s

This commit is contained in:
2025-11-24 15:20:07 +01:00
parent 044f5d305f
commit 2a26695fec
5 changed files with 60 additions and 19 deletions

View File

@@ -475,35 +475,69 @@ variable "cloudflare_windows_rdp_tunnel_name_gcp" {
#}
#======================================================
# CLOUDFLARE DNS SUBDOMAIN CONFIGURATION
# CLOUDFLARE DNS SUBDOMAIN CONFIGURATION AWS
#======================================================
variable "cloudflare_subdomain_ssh" {
variable "cloudflare_aws_subdomain_ssh" {
description = "Name of the subdomain for ssh public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_vnc" {
variable "cloudflare_aws_subdomain_vnc" {
description = "Name of the subdomain for VNC public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_web" {
variable "cloudflare_aws_subdomain_web" {
description = "Name of the subdomain for web public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_web_sensitive" {
variable "cloudflare_aws_subdomain_web_sensitive" {
description = "Name of the subdomain for web sensitive public hostname of tunnel"
type = string
}
variable "cloudflare_subdomain_rdp" {
variable "cloudflare_aws_subdomain_rdp" {
description = "Name of the subdomain for rdp browser rendered public hostname"
type = string
}
variable "cloudflare_subdomain_training_status" {
variable "cloudflare_aws_subdomain_training_status" {
description = "Name of the subdomain for training status admin portal (OPTIONAL: only needed if using optional-cloudflare-apps.tf)"
type = string
}
#======================================================
# CLOUDFLARE DNS SUBDOMAIN CONFIGURATION GCP
#======================================================
variable "cloudflare_gcp_subdomain_ssh" {
description = "Name of the subdomain for ssh public hostname of tunnel"
type = string
}
variable "cloudflare_gcp_subdomain_vnc" {
description = "Name of the subdomain for VNC public hostname of tunnel"
type = string
}
variable "cloudflare_gcp_subdomain_web" {
description = "Name of the subdomain for web public hostname of tunnel"
type = string
}
variable "cloudflare_gcp_subdomain_web_sensitive" {
description = "Name of the subdomain for web sensitive public hostname of tunnel"
type = string
}
variable "cloudflare_gcp_subdomain_rdp" {
description = "Name of the subdomain for rdp browser rendered public hostname"
type = string
}
variable "cloudflare_gcp_subdomain_training_status" {
description = "Name of the subdomain for training status admin portal (OPTIONAL: only needed if using optional-cloudflare-apps.tf)"
type = string
}