Skip to content

Commit

Permalink
Postgres 16 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shaheislamdfe committed Sep 20, 2024
1 parent 032bfaf commit d181a4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions aks/postgres/tfdocs.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ No modules.
| <a name="input_environment"></a> [environment](#input\_environment) | Current application environment | `string` | n/a | yes |
| <a name="input_name"></a> [name](#input\_name) | Name of the instance | `string` | `null` | no |
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Current namespace | `string` | n/a | yes |
| <a name="input_server_docker_image"></a> [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 |
| <a name="input_server_version"></a> [server\_version](#input\_server\_version) | Version of PostgreSQL server | `string` | `"14"` | no |
| <a name="input_server_docker_image"></a> [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 |
| <a name="input_server_version"></a> [server\_version](#input\_server\_version) | Version of PostgreSQL server | `string` | `"16"` | no |
| <a name="input_service_name"></a> [service\_name](#input\_service\_name) | Name of the service | `string` | n/a | yes |
| <a name="input_service_short"></a> [service\_short](#input\_service\_short) | Short name of the service | `string` | n/a | yes |
| <a name="input_use_azure"></a> [use\_azure](#input\_use\_azure) | Whether to deploy using Azure Redis Cache service | `bool` | n/a | yes |
Expand Down
6 changes: 3 additions & 3 deletions aks/postgres/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down

0 comments on commit d181a4f

Please sign in to comment.