Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and rrey committed Nov 7, 2020
1 parent 297377b commit 722f3e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ RUN apk add --no-cache --update \
ca-certificates \
curl

ENV TERRAGRUNT_VERSION=0.25.2
ENV TERRAGRUNT_VERSION=0.26.2
ENV TERRAGRUNT_DOWNLOAD_URL=https://github.com/gruntwork-io/terragrunt/releases/download
RUN curl -fsSL -O ${TERRAGRUNT_DOWNLOAD_URL}/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64 && \
curl -fsSL ${TERRAGRUNT_DOWNLOAD_URL}/v${TERRAGRUNT_VERSION}/SHA256SUMS | grep terragrunt_linux_amd64 > SHA256SUMS && \
sha256sum -c SHA256SUMS && \
mv terragrunt_linux_amd64 /usr/local/bin/terragrunt

ENV TERRAFORM_VERSION=0.13.4
ENV TERRAFORM_VERSION=0.13.5
ENV TERRAFORM_RELEASE_URL=https://releases.hashicorp.com/terraform
RUN curl -fsSL -O ${TERRAFORM_RELEASE_URL}/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
curl -fsSL ${TERRAFORM_RELEASE_URL}/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS | grep terraform_${TERRAFORM_VERSION}_linux_amd64.zip > SHA256SUMS && \
sha256sum -c SHA256SUMS && \
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
mv terraform /usr/local/bin/

ENV OPA_VERSION=0.23.2
ENV OPA_VERSION=0.24.0
WORKDIR /opa-build
RUN curl -fsSL "https://codeload.github.com/open-policy-agent/opa/tar.gz/v${OPA_VERSION}" | tar xvz --strip-components=1 && \
go build && \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# rrey/terraform-runner

![Build](https://github.com/rrey/terraform-runner/workflows/Docker%20Image%20CI/badge.svg)
![](https://img.shields.io/badge/Terraform-0.13.4-blueviolet)
![](https://img.shields.io/badge/Terragrunt-0.25.2-blue)
![](https://img.shields.io/badge/opa-0.23.2-lightgrey)
![](https://img.shields.io/badge/Terraform-0.13.5-blueviolet)
![](https://img.shields.io/badge/Terragrunt-0.26.2-blue)
![](https://img.shields.io/badge/opa-0.24.0-lightgrey)
![](https://img.shields.io/badge/conftest-0.21.0-blue)

This docker image aims at being a CI runner allowing to handle Terraform content.
Expand Down

0 comments on commit 722f3e6

Please sign in to comment.