Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -109,7 +109,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Version of the Postgresql helm chart that will be deployed. | `string` | `"11.7.9"` | no |
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Version of the Postgresql helm chart that will be deployed. | `string` | `"14.2.11"` | no |
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Name of eks cluster | `string` | `""` | no |
| <a name="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace) | Whether or not to deploy postgresql | `bool` | `true` | no |
| <a name="input_custom_credentials_config"></a> [custom\_credentials\_config](#input\_custom\_credentials\_config) | Specify the configuration settings for Postgresql to pass custom credentials during creation. | `any` | <pre>{<br> "postgres_password": "",<br> "repmgr_password": ""<br>}</pre> | no |
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

Expand Down