From 0a5a99dba861d9c4106f304c7d13f09178df48d7 Mon Sep 17 00:00:00 2001 From: "linda.nasredin" Date: Thu, 23 Nov 2023 14:04:23 +0200 Subject: [PATCH] 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 08c2fe690..10febf343 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 and MX web console IPs range. Please 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 7d5163256..aaa644ccc 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. Please 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 de89f7792..53878401a 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. Please 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." }