diff --git a/README.md b/README.md
index 5e538fc..3cd8d09 100644
--- a/README.md
+++ b/README.md
@@ -148,7 +148,7 @@ No modules.
| [CERTBOT\_EMAIL](#input\_CERTBOT\_EMAIL) | Email address to send certificate expiration notifications. | `string` | `"benjam.gronmark_arkiproj@hotmail.com"` | no |
| [DEPLOYMENT\_NAME](#input\_DEPLOYMENT\_NAME) | Set DNS name, if not set will be automatically generated | `string` | `null` | no |
| [DOCKER\_COMPOSITION\_REPO](#input\_DOCKER\_COMPOSITION\_REPO) | The repo to use to get the docker-composition from | `string` | `"https://github.com/pvarki/docker-rasenmaeher-integration.git"` | no |
-| [DOCKER\_REPO\_TAG](#input\_DOCKER\_REPO\_TAG) | The branch/tag in DOCKER\_COMPOSITION\_REPO to use | `string` | `"1.1.1"` | no |
+| [DOCKER\_REPO\_TAG](#input\_DOCKER\_REPO\_TAG) | The branch/tag in DOCKER\_COMPOSITION\_REPO to use | `string` | `"1.2.0"` | no |
| [DOCKER\_TAG\_EXTRA](#input\_DOCKER\_TAG\_EXTRA) | If you want to deploy for example a PR tagged version, messing this up is a good way to make everything take forever | `string` | `""` | no |
| [EXPIRES](#input\_EXPIRES) | ISO 8601 date (yyyy-mm-dd) after which this resource is cleaned up, defaults to 30days from now | `string` | `null` | no |
| [RESOURCE\_GROUP\_LOCATION](#input\_RESOURCE\_GROUP\_LOCATION) | Location of the resource group. | `string` | `"northeurope"` | no |
diff --git a/variables.tf b/variables.tf
index 859e8a7..be200d2 100644
--- a/variables.tf
+++ b/variables.tf
@@ -40,7 +40,7 @@ variable "DOCKER_COMPOSITION_REPO" {
variable "DOCKER_REPO_TAG" {
- default = "1.1.1" # do not set to "main", nothing guarantees there are no backwards incompatible changes
+ default = "1.2.0" # do not set to "main", nothing guarantees there are no backwards incompatible changes
description = "The branch/tag in DOCKER_COMPOSITION_REPO to use"
type = string
}