Update variables.tf

This commit is contained in:
Keith Harvey 2023-06-28 13:56:00 +01:00 committed by GitHub
parent 7cd9083fd7
commit b30efa8bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions

View File

@ -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 = {}