This commit is contained in:
29
variables.tf
29
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
|
||||
# =============================================================================
|
||||
|
||||
Reference in New Issue
Block a user