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 # =============================================================================