Skip to content

Commit

Permalink
Merge pull request #196 from sassoftware/staging
Browse files Browse the repository at this point in the history
5.5.0 - September 21, 2023
  • Loading branch information
jarpat authored Sep 21, 2023
2 parents e639372 + b0664b6 commit 69d395e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/CONFIG-VARS.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ You can use `default_public_access_cidrs` to set a default range for all created
| gke_control_plane_subnet_cidr | Address space for the hosted master subnet | string | "10.2.0.0/28" | When providing your own subnets (by setting `subnet_names` make sure your subnets do not overlap this range |
| misc_subnet_cidr | Address space for the the auxiliary resources (Jump VM and optionally NFS VM) subnet | string | "192.168.2.0/24" | This variable is ignored when `subnet_names` is set (aka bring your own subnet) |
| filestore_subnet_cidr | Address space for Google Filestore subnet | string | "192.168.3.0/29" | Needs to be at least a /29 range. Only used when `storage_type="ha"` |
| database_subnet_cidr | Address space for Google Cloud SQL Postgres subnet | string | "192.168.4.0/24" | Only used with external postgres |
| database_subnet_cidr | Address space for Google Cloud SQL Postgres subnet | string | "192.168.4.0/23" | Only used with external postgres |

### Use Existing

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ variable "filestore_subnet_cidr" {
variable "database_subnet_cidr" {
description = "Address space for Google Cloud SQL Postgres subnet"
type = string
default = "192.168.4.0/24"
default = "192.168.4.0/23"
}


Expand Down

0 comments on commit 69d395e

Please sign in to comment.