test add other apps
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 15s

This commit is contained in:
2025-11-24 14:52:08 +01:00
parent 81823f1a93
commit 746d019195
6 changed files with 267 additions and 17 deletions

View File

@@ -348,6 +348,11 @@ variable "cloudflare_domain_controller_rdp_port" {
# GCP Networking
#======================================================
variable "aws_vm_internal_ip" {
description = "Internal Private IP of AWS Compute Engine Instance"
type = string
}
variable "gcp_vm_internal_ip" {
description = "Internal Private IP of GCP Compute Engine Instance"
type = string
@@ -382,6 +387,11 @@ variable "aws_vpc_cidr" {
type = string
}
variable "aws_windows_vm_internal_ip" {
description = "Internal Private IP of AWS Compute Engine Instance running Windows RDP"
type = string
}
variable "aws_private_cidr" {
description = "AWS private subnet, subnet for VMs in AWS"
type = string
@@ -502,12 +512,22 @@ variable "cloudflare_subdomain_training_status" {
# CLOUDFLARE TARGET NAMES
#======================================================
variable "cloudflare_target_ssh_name" {
variable "cloudflare_aws_target_ssh_name" {
description = "Friendly name for the Target hostname in Infrastructure App"
type = string
}
variable "cloudflare_target_rdp_name" {
variable "cloudflare_gcp_target_ssh_name" {
description = "Friendly name for the Target hostname in Infrastructure App"
type = string
}
variable "cloudflare_aws_target_rdp_name" {
description = "Friendly name for the Target hostname in RDP windows browser rendered App"
type = string
}
variable "cloudflare_gcp_target_rdp_name" {
description = "Friendly name for the Target hostname in RDP windows browser rendered App"
type = string
}