diff --git a/README.md b/README.md index 733925b..1917fef 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This module allows you to easily deploy a Postgresql database in HA on Kubernete | Postgrsql Helm Chart Version | K8s supported version (EKS, AKS & GKE) | | :-----: | :--- | -| **11.7.9** | **1.23,1.24,1.25,1.26,1.27** | +| **14.2.11** | **1.23,1.24,1.25,1.26,1.27,1.28,1.29** | ## Usage Example @@ -109,7 +109,7 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| [chart\_version](#input\_chart\_version) | Version of the Postgresql helm chart that will be deployed. | `string` | `"11.7.9"` | no | +| [chart\_version](#input\_chart\_version) | Version of the Postgresql helm chart that will be deployed. | `string` | `"14.2.11"` | no | | [cluster\_name](#input\_cluster\_name) | Name of eks cluster | `string` | `""` | no | | [create\_namespace](#input\_create\_namespace) | Whether or not to deploy postgresql | `bool` | `true` | no | | [custom\_credentials\_config](#input\_custom\_credentials\_config) | Specify the configuration settings for Postgresql to pass custom credentials during creation. | `any` |
{
"postgres_password": "",
"repmgr_password": ""
}
| no | diff --git a/main.tf b/main.tf index 6d74f6f..409444c 100644 --- a/main.tf +++ b/main.tf @@ -30,7 +30,7 @@ resource "helm_release" "postgres_exporter" { depends_on = [helm_release.postgresql_ha] name = "postgres-exporter" chart = "prometheus-postgres-exporter" - version = "4.8.0" + version = "6.0.0" timeout = 600 namespace = var.postgresql_namespace repository = "https://prometheus-community.github.io/helm-charts" diff --git a/variable.tf b/variable.tf index d1612fb..01fe40d 100644 --- a/variable.tf +++ b/variable.tf @@ -36,7 +36,7 @@ variable "recovery_window_aws_secret" { variable "chart_version" { type = string - default = "11.7.9" + default = "14.2.11" description = "Version of the Postgresql helm chart that will be deployed." }