From d181a4fcfd9443f486552336ec4b46a29e3fa208 Mon Sep 17 00:00:00 2001 From: Shahe Islam Date: Fri, 20 Sep 2024 13:30:47 +0100 Subject: [PATCH] Postgres 16 changes --- aks/postgres/tfdocs.md | 4 ++-- aks/postgres/variables.tf | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aks/postgres/tfdocs.md b/aks/postgres/tfdocs.md index 05182c4..2cbfc00 100644 --- a/aks/postgres/tfdocs.md +++ b/aks/postgres/tfdocs.md @@ -66,8 +66,8 @@ No modules. | [environment](#input\_environment) | Current application environment | `string` | n/a | yes | | [name](#input\_name) | Name of the instance | `string` | `null` | no | | [namespace](#input\_namespace) | Current namespace | `string` | n/a | yes | -| [server\_docker\_image](#input\_server\_docker\_image) | Database image to use with kubernetes deployment, eg. postgis/postgis:14-3.4 | `string` | `"postgres:14-alpine"` | no | -| [server\_version](#input\_server\_version) | Version of PostgreSQL server | `string` | `"14"` | no | +| [server\_docker\_image](#input\_server\_docker\_image) | Database image to use with kubernetes deployment, eg. postgis/postgis:16-3.4 | `string` | `"postgres:16-alpine"` | no | +| [server\_version](#input\_server\_version) | Version of PostgreSQL server | `string` | `"16"` | no | | [service\_name](#input\_service\_name) | Name of the service | `string` | n/a | yes | | [service\_short](#input\_service\_short) | Short name of the service | `string` | n/a | yes | | [use\_azure](#input\_use\_azure) | Whether to deploy using Azure Redis Cache service | `bool` | n/a | yes | diff --git a/aks/postgres/variables.tf b/aks/postgres/variables.tf index 08e2f09..1d68610 100644 --- a/aks/postgres/variables.tf +++ b/aks/postgres/variables.tf @@ -53,13 +53,13 @@ variable "cluster_configuration_map" { variable "server_docker_image" { type = string nullable = false - default = "postgres:14-alpine" - description = "Database image to use with kubernetes deployment, eg. postgis/postgis:14-3.4" + default = "postgres:16-alpine" + description = "Database image to use with kubernetes deployment, eg. postgis/postgis:16-3.4" } variable "server_version" { type = string - default = "14" + default = "16" description = "Version of PostgreSQL server" }