diff --git a/README.md b/README.md index d819e05..3d650d6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A Terraform module to provision [Traefik](https://traefik.io/traefik/) (v2.x) on | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | namespace | Namespace to install traefik chart into (created if non-existent on target cluster) | string | `traefik` | no | -| traefik_chart_version | Version of Traefik chart to install | string | `10.19.5` | no | +| traefik_chart_version | Version of Traefik chart to install | string | `10.24.0` | no | | timeout_seconds | Helm chart deployment can sometimes take longer than the default 5 minutes. Set a custom timeout (secs) | number | `800` | no | | replica_count | Number of replica pods to create | number | `1` | no | | values_file | Name of the traefik helm chart values file to use | string | `values.yaml` | no | \ No newline at end of file diff --git a/variables.tf b/variables.tf index dc4dd32..3e83c47 100644 --- a/variables.tf +++ b/variables.tf @@ -7,7 +7,7 @@ variable "namespace" { variable "traefik_chart_version" { description = "Version of Traefik chart to install" type = string - default = "10.19.5" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) + default = "10.24.0" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) } # Helm chart deployment can sometimes take longer than the default 5 minutes