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

This commit is contained in:
2025-11-19 09:58:22 +01:00
parent 9cbc6068b8
commit 38c25fe63e

View File

@@ -300,3 +300,60 @@ variable "cloudflare_subdomain_training_status" {
type = string type = string
default = "training-status.tips-of-mine.com" default = "training-status.tips-of-mine.com"
} }
#======================================================
# GCP Networking
#======================================================
variable "gcp_infra_cidr" {
description = "CIDR Range for GCP VMs running cloudflared"
type = string
}
variable "gcp_warp_cidr" {
description = "CIDR Range for GCP VMs running warp"
type = string
}
variable "gcp_windows_rdp_cidr" {
description = "CIDR Range for GCP VMs running cloudflared, Windows and RDP Server"
type = string
}
#======================================================
# AWS Networking
#======================================================
variable "aws_vpc_cidr" {
description = "AWS vpc cidr, subnet for vpc in AWS"
type = string
}
variable "aws_private_cidr" {
description = "AWS private subnet, subnet for VMs in AWS"
type = string
}
variable "aws_public_cidr" {
description = "AWS public subnet"
type = string
}
#======================================================
# AZURE Networking
#======================================================
variable "azure_subnet_cidr" {
description = "Azure address prefix, subnet for VM in Azure"
type = string
}
variable "azure_vnet_cidr" {
description = "Azure address vnet, subnet for vnet in Azure"
type = string
}
variable "azure_public_dns_domain" {
description = "Azure Public DNS Domain"
type = string
}