Skip to content

Commit 096dd43

Browse files
github-actions[bot]github-merge-queue
andauthored
⬆️ Bump for tg-0.84.1 ot-1.10.5 aws-2.28.9 gcp-534.0.0 az-2.76.0 (#2890)
## 📝 Brief description <!-- Write you description here --> <!-- Diff summary - START --> ⬆️ Bump for tg-0.84.1 ot-1.10.5 aws-2.28.9 gcp-534.0.0 az-2.76.0 <!-- Diff summary - END --> ## 💻 Commits <!-- Diff commits - START --> * 20fa6c4 - github-merge-queue - 2025-08-14 05:19:01 ⬆️ Bump for tg-0.84.1 ot-1.10.5 aws-2.28.9 gcp-534.0.0 az-2.76.0 Files changed: M Makefile M README.md <!-- Diff commits - END --> ## :file_folder: Modified files <!-- Diff files - START --> Makefile | 10 +++++----- README.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) <!-- Diff files - END --> ## :warning: Additional information * [ ] Pushed to a branch with a proper name and provided proper commit message. * [ ] Provided a clear and concise description of what the issue is. *Check [CONTRIBUTING.md][contributing] and [CODE_OF_CONDUCT.md][code] for more information* [contributing]: https://github.com/devops-infra/.github/blob/master/CONTRIBUTING.md [code]: https://github.com/devops-infra/.github/blob/master/CODE_OF_CONDUCT.md Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
1 parent ff4a226 commit 096dd43

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
phony: help
33

44
# Provide versions of the main dependencies to use with this Docker image
5-
AWS_VERSION := 2.27.62
6-
GCP_VERSION := 532.0.0
7-
AZ_VERSION = 2.75.0
5+
AWS_VERSION := 2.28.9
6+
GCP_VERSION := 534.0.0
7+
AZ_VERSION = 2.76.0
88
TF_VERSION := 1.12.2
9-
OT_VERSION := 1.10.3
10-
TG_VERSION := 0.83.2
9+
OT_VERSION := 1.10.5
10+
TG_VERSION := 0.84.1
1111
TF_TG_VERSION := tf-$(TF_VERSION)-tg-$(TG_VERSION)
1212
OT_TG_VERSION := ot-$(OT_VERSION)-tg-$(TG_VERSION)
1313
FULL_VERSION := tf-$(TF_VERSION)-ot-$(OT_VERSION)-tg-$(TG_VERSION)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ bundled with or not (see second table below).
6666

6767
| Current release full tag version value |
6868
|:---------------------------------------|
69-
| `tf-1.12.2-ot-1.10.3-tg-0.83.2` |
69+
| `tf-1.12.2-ot-1.10.5-tg-0.84.1` |
7070

7171

7272
| Registry | Example full image name | Image name | Image version | Terraform version | OpenTofu version | Terragrunt version |
7373
|--------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|---------------------|----------------------|-------------------|------------------|--------------------|
74-
| [Docker Hub](https://hub.docker.com/repository/docker/devopsinfra/docker-terragrunt) | `devopsinfra/docker-terragrunt:tf-1.12.2-tg-0.83.2` | `docker-terragrunt` | `tf-1.12.2-tg-0.83.2` | `1.12.2` | `N/A` | `0.83.2` |
75-
| [Docker Hub](https://hub.docker.com/repository/docker/devopsinfra/docker-terragrunt) | `devopsinfra/docker-terragrunt:ot-1.10.3-tg-0.83.2` | `docker-terragrunt` | `ot-1.10.3-tg-0.83.2` | `N/A` | `1.10.3` | `0.83.2` |
76-
| [GitHub Packages](https://github.com/devops-infra/docker-terragrunt/packages) | `ghcr.io/devops-infra/docker-terragrunt/docker-terragrunt:tf-1.12.2-tg-0.83.2` | `docker-terragrunt` | `tf-1.12.2-tg-0.83.2` | `1.12.2` | `N/A` | `0.83.2` |
77-
| [GitHub Packages](https://github.com/devops-infra/docker-terragrunt/packages) | `ghcr.io/devops-infra/docker-terragrunt/docker-terragrunt:ot-1.10.3-tg-0.83.2` | `docker-terragrunt` | `ot-1.10.3-tg-0.83.2` | `N/A` | `1.10.3` | `0.83.2` |
74+
| [Docker Hub](https://hub.docker.com/repository/docker/devopsinfra/docker-terragrunt) | `devopsinfra/docker-terragrunt:tf-1.12.2-tg-0.84.1` | `docker-terragrunt` | `tf-1.12.2-tg-0.84.1` | `1.12.2` | `N/A` | `0.84.1` |
75+
| [Docker Hub](https://hub.docker.com/repository/docker/devopsinfra/docker-terragrunt) | `devopsinfra/docker-terragrunt:ot-1.10.5-tg-0.84.1` | `docker-terragrunt` | `ot-1.10.5-tg-0.84.1` | `N/A` | `1.10.5` | `0.84.1` |
76+
| [GitHub Packages](https://github.com/devops-infra/docker-terragrunt/packages) | `ghcr.io/devops-infra/docker-terragrunt/docker-terragrunt:tf-1.12.2-tg-0.84.1` | `docker-terragrunt` | `tf-1.12.2-tg-0.84.1` | `1.12.2` | `N/A` | `0.84.1` |
77+
| [GitHub Packages](https://github.com/devops-infra/docker-terragrunt/packages) | `ghcr.io/devops-infra/docker-terragrunt/docker-terragrunt:ot-1.10.5-tg-0.84.1` | `docker-terragrunt` | `ot-1.10.5-tg-0.84.1` | `N/A` | `1.10.5` | `0.84.1` |
7878

7979

8080
# Available flavours

0 commit comments

Comments
 (0)