From 04a30fa266ff443a025d12ac2522f2a788639d95 Mon Sep 17 00:00:00 2001 From: "linda.nasredin" Date: Thu, 23 Nov 2023 14:02:20 +0200 Subject: [PATCH] EDSF-340 web_console_cidr variable default value should not be 0.0.0.0/0 in installation examples --- examples/aws/poc/dsf_deployment/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/aws/poc/dsf_deployment/variables.tf b/examples/aws/poc/dsf_deployment/variables.tf index bb15b3200..4d1b6b308 100644 --- a/examples/aws/poc/dsf_deployment/variables.tf +++ b/examples/aws/poc/dsf_deployment/variables.tf @@ -58,7 +58,7 @@ variable "password" { ############################## 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." }