From aff2b2263f64ec9628b784eb26e6f6b6b4531505 Mon Sep 17 00:00:00 2001 From: Linda Nasredin Date: Thu, 23 Nov 2023 16:49:21 +0200 Subject: [PATCH] EDSF-340 web_console_cidr variable default value should not be 0.0.0.0/0 in installation examples (#321) * EDSF-340 web_console_cidr variable default value should not be 0.0.0.0/0 in installation examples * EDSF-340 web_console_cidr variable default value should not be 0.0.0.0/0 in installation examples * EDSF-340 web_console_cidr variable default value should not be 0.0.0.0/0 in installation examples --- .../aws/installation/dsf_single_account_deployment/variables.tf | 2 +- .../installation/sonar_multi_account_deployment/variables.tf | 2 +- .../installation/sonar_single_account_deployment/variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/aws/installation/dsf_single_account_deployment/variables.tf b/examples/aws/installation/dsf_single_account_deployment/variables.tf index e5ef0b9bf..57dc7a0ed 100644 --- a/examples/aws/installation/dsf_single_account_deployment/variables.tf +++ b/examples/aws/installation/dsf_single_account_deployment/variables.tf @@ -109,7 +109,7 @@ variable "proxy_ssh_user" { ############################## variable "web_console_cidr" { type = list(string) - default = ["0.0.0.0/0"] + default = [] description = "DSF Hub, MX and DRA Admin web consoles IPs range. Specify IPs in the following format - [\"x.x.x.x/x\", \"y.y.y.y/y\"]. The default configuration opens the DSF Hub web console as a public website. It is recommended to specify a more restricted IP and CIDR range." } diff --git a/examples/aws/installation/sonar_multi_account_deployment/variables.tf b/examples/aws/installation/sonar_multi_account_deployment/variables.tf index d0e5e7120..ac71709f8 100644 --- a/examples/aws/installation/sonar_multi_account_deployment/variables.tf +++ b/examples/aws/installation/sonar_multi_account_deployment/variables.tf @@ -163,7 +163,7 @@ variable "password_secret_name" { variable "web_console_cidr" { type = list(string) - default = ["0.0.0.0/0"] + default = [] description = "DSF Hub web console IPs range. Specify IPs in the following format - [\"x.x.x.x/x\", \"y.y.y.y/y\"]. The default configuration opens the DSF Hub web console as a public website. It is recommended to specify a more restricted IP and CIDR range." } diff --git a/examples/aws/installation/sonar_single_account_deployment/variables.tf b/examples/aws/installation/sonar_single_account_deployment/variables.tf index 89115fbbe..ed020f448 100644 --- a/examples/aws/installation/sonar_single_account_deployment/variables.tf +++ b/examples/aws/installation/sonar_single_account_deployment/variables.tf @@ -110,7 +110,7 @@ variable "password_secret_name" { variable "web_console_cidr" { type = list(string) - default = ["0.0.0.0/0"] + default = [] description = "DSF Hub web console IPs range. Specify IPs in the following format - [\"x.x.x.x/x\", \"y.y.y.y/y\"]. The default configuration opens the DSF Hub web console as a public website. It is recommended to specify a more restricted IP and CIDR range." }