From ab6f3355bcde86f50c4aac3fc9bcdc3180f26303 Mon Sep 17 00:00:00 2001 From: Colin Wilson Date: Mon, 7 Feb 2022 01:32:35 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20update=20default=20traefik=20versio?= =?UTF-8?q?n=20to=202.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 021fe08..3840fea 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ A Functional example is included in the | networks | List of networks Traefik should connect to. | list(string) | `"traefik"` | no | | traefik_network | Name of Traefik (Docker overlay) network. | string | `"traefik"` | no | | traefik_network_attachable | Make the default Traefik network attachable. | bool | `false` | no | -| traefik_version | Which Traefik Docker image version to use. | string | `"2.5.6"` | no | +| traefik_version | Which Traefik Docker image version to use. | string | `"2.6.0"` | no | | password | Password to login to Traefik dashboard (username: admin). | string | `"traefik"` | no | | live_cert | Deploy Traefik with a live SSL cert. | bool | `"false"` | no | | lets_encrypt_keytype | SSL cert key type to issue certs with. | string |`"RSA2048"` | no | diff --git a/variables.tf b/variables.tf index 43060da..11792f7 100644 --- a/variables.tf +++ b/variables.tf @@ -31,7 +31,7 @@ variable "traefik_network_attachable" { variable "traefik_version" { type = string description = "Traefik Docker image version." - default = "2.5.6" # https://github.com/traefik/traefik/releases/latest + default = "2.6.0" # https://github.com/traefik/traefik/releases/latest } variable "password" {