Skip to content

Commit

Permalink
Making default false for create_rds_postgres_cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeva-duplo committed May 29, 2024
1 parent 23c46ad commit b06d683
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions terraform/modules/galileo-eks/examples/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ variable "ml_node_size" {
}

variable "create_rds_postgres_cluster" {
description = "Specifies whether create RDS postgres cluster. Defaults to `true`"
description = "Specifies whether create RDS postgres cluster. Defaults to `false`"
type = bool
default = true
default = false
}

variable "postgres_engine_version" {
Expand Down
4 changes: 2 additions & 2 deletions terraform/modules/galileo-eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ variable "ml_node_size" {
}

variable "create_rds_postgres_cluster" {
description = "Specifies whether create RDS postgres cluster. Defaults to `true`"
description = "Specifies whether create RDS postgres cluster. Defaults to `false`"
type = bool
default = true
default = false
}


Expand Down

0 comments on commit b06d683

Please sign in to comment.