Skip to content

Commit

Permalink
EDSF-340 web_console_cidr variable default value should not be 0.0.0.…
Browse files Browse the repository at this point in the history
…0/0 in installation examples
  • Loading branch information
linda.nasredin committed Nov 23, 2023
1 parent 04a30fa commit 0a5a99d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

Expand Down

0 comments on commit 0a5a99d

Please sign in to comment.