Skip to content

Commit

Permalink
Fix tf state (#223)
Browse files Browse the repository at this point in the history
* fix: Update terraform backend configuration to be compatible with Terraform 1.6+ 3rd attempt

* chore: Bump version to 1.2.3
  • Loading branch information
JustinLex authored Feb 1, 2024
1 parent 028cb8f commit c8c2e5a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion back/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tmeit_backend"
version = "1.2.2"
version = "1.2.3"
description = "Python backend for the TMEIT website"
authors = ["TraditionsMEsterIT"]
license = "AGPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/postgres/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/jobTemplate/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/db-backup-agent:1.2.2"
"value": "ghcr.io/tmeit/db-backup-agent:1.2.3"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-run-migrations:1.2.2"
"value": "ghcr.io/tmeit/tmeit-run-migrations:1.2.3"
}
]
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/tmeit-app/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-app:1.2.2"
"value": "ghcr.io/tmeit/tmeit-app:1.2.3"
}
]
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/tmeit-worker/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-worker:1.2.2"
"value": "ghcr.io/tmeit/tmeit-worker:1.2.3"
}
]
1 change: 1 addition & 0 deletions deploy/terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ terraform {
skip_region_validation = true
skip_metadata_api_check = true
skip_requesting_account_id = true
skip_s3_checksum = true

// Credentials to reach the backend state bucket are pulled from $AWS_ACCESS_KEY_ID and $AWS_SECRET_ACCESS_KEY environment variables
}
Expand Down
2 changes: 1 addition & 1 deletion front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sideEffects": [
"*.css"
],
"version": "1.2.2",
"version": "1.2.3",
"description": "Front-end for the TMEIT website.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit c8c2e5a

Please sign in to comment.