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

This commit is contained in:
2025-11-19 10:01:46 +01:00
parent 38c25fe63e
commit daeb3024d3

View File

@@ -101,6 +101,35 @@ variable "applications" {
#
#======================================================
# CLOUDFLARE WARP CONNECTOR CONFIGURATION
#======================================================
variable "cloudflare_default_cgnat_routes" {
description = "default cgnat routes"
type = list(object({
address = string
description = string
}))
default = [{
address = "100.64.0.0/10"
description = "Default CGNAT Range"
}]
}
variable "cloudflare_custom_cgnat_routes" {
description = "List of custom CGNAT routes to add to the device profile"
type = list(object({
address = string
description = string
}))
}
variable "cloudflare_warp_cgnat_cidr" {
description = "default ip range for WARP when overriding local interface IP"
type = string
}
# =============================================================================
# ADVANCED OPTIONS
# =============================================================================