Skip to content

Commit

Permalink
specify default release tag (#52)
Browse files Browse the repository at this point in the history
* specify default release tag

* update changeset
  • Loading branch information
chrnorm authored Feb 19, 2024
1 parent d49e31e commit eefebfb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changeset/odd-mugs-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@common-fate/terraform-aws-common-fate-deployment": minor
---

A default application release tag is now specified as part of the Terraform module. If you've been using the `release_tag` parameter, you should now remove this parameter from the stack to use the application versions bundled with the Terraform module.

The initial bundled application release is v1.3.1.
3 changes: 2 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ variable "aws_region" {
}

variable "release_tag" {
description = "Specifies the tag for frontend and backend images, e.g v1.2.0"
description = "Override the application release tag to be used in the deployment. As of module version v1.13.0, application versions are bundled into the Terraform module, and so in most cases you should not override this."
type = string
default = "v1.3.1"
}

variable "app_certificate_arn" {
Expand Down

0 comments on commit eefebfb

Please sign in to comment.