From b30efa8bfe7c06e5ace85ee8d2580a7ec3374929 Mon Sep 17 00:00:00 2001 From: Keith Harvey Date: Wed, 28 Jun 2023 13:56:00 +0100 Subject: [PATCH] Update variables.tf --- .../data-solutions/data-platform-minimal/variables.tf | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/blueprints/data-solutions/data-platform-minimal/variables.tf b/blueprints/data-solutions/data-platform-minimal/variables.tf index 09cdfdb8..40692b76 100644 --- a/blueprints/data-solutions/data-platform-minimal/variables.tf +++ b/blueprints/data-solutions/data-platform-minimal/variables.tf @@ -24,6 +24,16 @@ variable "composer_config" { env_variables = optional(map(string), {}) image_version = optional(string, "composer-2-airflow-2") }), {}) + web_server_network_access_ip_ranges = optional(list(map(string)), [ + { + description = "Allows access from all IPv4 addresses (default value)" + value = "0.0.0.0/0" + }, + { + description = "Allows access from all IPv6 addresses (default value)" + value = "::0/0" + } + ]) workloads_config = optional(object({ scheduler = optional(object({ cpu = optional(number, 0.5) @@ -106,7 +116,6 @@ variable "network_config" { pods_range_name = optional(string, "pods") services_range_name = optional(string, "services") }), {}) - # web_server_network_access_control = list(string) }) nullable = false default = {}