From daeb3024d3b86045c7e2dbbbe1a64f1a2d917169 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Wed, 19 Nov 2025 10:01:46 +0100 Subject: [PATCH] Update variables.tf --- variables.tf | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/variables.tf b/variables.tf index 0ffeeac..821f8e5 100644 --- a/variables.tf +++ b/variables.tf @@ -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 # =============================================================================