Skip to content

Commit c9e76ce

Browse files
authored
feat: (IAC-1348) Update the default Postgres server version to 15 (#204)
1 parent 86c3dca commit c9e76ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/CONFIG-VARS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Each server element, like `foo = {}`, can contain none, some, or all of the para
264264
| backup_count | The number of automated backups to retain, from 1 to 365 | string | "7" | Take note this is a **COUNT** not number of days |
265265
| administrator_login | The Administrator Login for the PostgreSQL Server. Changing this forces a new resource to be created. | string | "pgadmin" | | |
266266
| administrator_password | The Password associated with the administrator_login for the PostgreSQL Server | string | "my$up3rS3cretPassw0rd" | |
267-
| server_version | The version of the PostgreSQL server instance | string | "13" | Refer to the [SAS Viya Platform Administration Guide](https://documentation.sas.com/?cdcId=sasadmincdc&cdcVersion=default&docsetId=itopssr&docsetTarget=p05lfgkwib3zxbn1t6nyihexp12n.htm#p1wq8ouke3c6ixn1la636df9oa1u) for the supported versions of PostgreSQL for the SAS Viya platform. |
267+
| server_version | The version of the PostgreSQL server instance | string | "15" | Refer to the [SAS Viya Platform Administration Guide](https://documentation.sas.com/?cdcId=sasadmincdc&cdcVersion=default&docsetId=itopssr&docsetTarget=p05lfgkwib3zxbn1t6nyihexp12n.htm#p1wq8ouke3c6ixn1la636df9oa1u) for the supported versions of PostgreSQL for the SAS Viya platform. |
268268
| ssl_enforcement_enabled | Enforce SSL on connection to the PostgreSQL database | bool | true | |
269269
| availability_type | The availability type for the master instance. | string | "ZONAL" | This is only used to set up high availability for the PostgreSQL instance. Can be either `ZONAL` or `REGIONAL`. |
270270
| database_flags | Database flags for the master instance. | list(object({})) | | More details can be found [here](https://cloud.google.com/sql/docs/postgres/flags) |
@@ -288,7 +288,7 @@ postgres_servers = {
288288
backup_count = 7 # Number of backups to retain, not in days
289289
administrator_login = "cdsadmin"
290290
administrator_password = "my$up3rS3cretPassw0rd"
291-
server_version = "13"
291+
server_version = "15"
292292
availability_type = "ZONAL"
293293
ssl_enforcement_enabled = true
294294
database_flags = [{ name = "foo" value = "true"}, { name = "bar", value = "false"}]

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ variable "postgres_server_defaults" {
360360
backup_count = "7" # Number of backups to retain, not days
361361
administrator_login = "pgadmin"
362362
administrator_password = "my$up3rS3cretPassw0rd"
363-
server_version = "13"
363+
server_version = "15"
364364
availability_type = "ZONAL"
365365
ssl_enforcement_enabled = true
366366
database_flags = []

0 commit comments

Comments
 (0)