diff --git a/README.md b/README.md index 5b751f6..f34837a 100644 --- a/README.md +++ b/README.md @@ -151,8 +151,8 @@ 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.6.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 | +| [DOCKER\_REPO\_TAG](#input\_DOCKER\_REPO\_TAG) | The branch/tag in DOCKER\_COMPOSITION\_REPO to use | `string` | `"server_53"` | 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` | `"-118-merge"` | 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 | | [RESOURCE\_GROUP\_NAME\_PREFIX](#input\_RESOURCE\_GROUP\_NAME\_PREFIX) | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | `string` | `"rg-miniwerk"` | no | diff --git a/variables.tf b/variables.tf index d093a51..7f1f041 100644 --- a/variables.tf +++ b/variables.tf @@ -45,7 +45,7 @@ variable "DOCKER_COMPOSITION_REPO" { # FIXME: Update the tag when https://github.com/pvarki/docker-rasenmaeher-integration/pull/95 is merged variable "DOCKER_REPO_TAG" { - default = "1.6.0" # do not set to "main", nothing guarantees there are no backwards incompatible changes + default = "server_53" # 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 } @@ -75,7 +75,7 @@ variable "CERTBOT_EMAIL" { } variable "DOCKER_TAG_EXTRA" { - default = "" + default = "-118-merge" description = "If you want to deploy for example a PR tagged version, messing this up is a good way to make everything take forever" type = string }