Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump for Terragrunt v0.22.3 #53

Merged
merged 1 commit into from
Feb 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN set -eux \
&& mv terraform /usr/bin/terraform \
&& chmod +x /usr/bin/terraform \
# Get Terragrunt
# Contrary to orignal by cytopia (https://github.com/cytopia) TG_VERSION needs to point to explicit version, e.g. 0.22.1
# Contrary to orignal by cytopia (https://github.com/cytopia) TG_VERSION needs to point to explicit version, e.g. 0.22.3
# To choose latest from minor version provide a proper parameter for the Makefile
&& git clone https://github.com/gruntwork-io/terragrunt /terragrunt \
&& cd /terragrunt \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
Tag of Docker image tells which version of Terraform and Terragrunt it contains and which public cloud provider CLI it's bundled with or not (see below).
<br>
For example:
* `christophshyper/docker-terragrunt:tf-0.12.20-tg-0.22.1` means it's Terraform v0.12.20 and Terragrunt v0.22.1 without additional CLI.
* `christophshyper/docker-terragrunt:aws-tf-0.12.20-tg-0.22.1` means it's Terraform v0.12.20 and Terragrunt v0.22.1 with AWS CLI.
* `christophshyper/docker-terragrunt:tf-0.12.20-tg-0.22.3` means it's Terraform v0.12.20 and Terragrunt v0.22.3 without additional CLI.
* `christophshyper/docker-terragrunt:aws-tf-0.12.20-tg-0.22.3` means it's Terraform v0.12.20 and Terragrunt v0.22.3 with AWS CLI.

**Source code is available at [GitHub](https://github.com/) under [ChristophShyper/docker-terragrunt](https://github.com/ChristophShyper/docker-terragrunt) (will change soon to match DockerHub's value christophshyper).**

Expand All @@ -55,8 +55,8 @@ Furthermore, versioning labels of images contain versions of said software to em
### Available flavours
Docker image | Terraform version | Terragrunt version | Additional software
:--- | :--- | :--- | :---
`christophshyper/docker-terragrunt:latest`<br>`christophshyper/docker-terragrunt:tf-0.12.20-tg-0.22.1` | v0.12.20 | v0.22.1 | N/A
`christophshyper/docker-terragrunt:aws-latest`<br>`christophshyper/docker-terragrunt:aws-tf-0.12.20-tg-0.22.1` | v0.12.20 | v0.22.1 | [awscli](https://github.com/aws/aws-cli) - For interacting with AWS infrastructure, e.g. for publishing Lambda packages to S3.<br>[boto3](https://github.com/boto/boto3) - Python library for interacting with AWS infrastructure in scripts.
`christophshyper/docker-terragrunt:latest`<br>`christophshyper/docker-terragrunt:tf-0.12.20-tg-0.22.3` | v0.12.20 | v0.22.3 | N/A
`christophshyper/docker-terragrunt:aws-latest`<br>`christophshyper/docker-terragrunt:aws-tf-0.12.20-tg-0.22.3` | v0.12.20 | v0.22.3 | [awscli](https://github.com/aws/aws-cli) - For interacting with AWS infrastructure, e.g. for publishing Lambda packages to S3.<br>[boto3](https://github.com/boto/boto3) - Python library for interacting with AWS infrastructure in scripts.

### Without public cloud provider CLIs
Use for example `christophshyper/docker-terragrunt:latest`.
Expand Down