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 (#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
  • Loading branch information
Linda Nasredin authored Nov 23, 2023
1 parent 8c32fc5 commit aff2b22
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, 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."
}

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. 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. 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 aff2b22

Please sign in to comment.