Skip to content

Commit

Permalink
Software Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
snw35 committed Jul 30, 2023
1 parent 6e0002a commit bfebb9d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ RUN wget $HELM_URL/$HELM_FILENAME \

# Install terraform
# From https://www.terraform.io/downloads.html
ENV TERRAFORM_VERSION 1.5.3
ENV TERRAFORM_VERSION 1.5.4
ENV TERRAFORM_URL https://releases.hashicorp.com/terraform/$TERRAFORM_VERSION
ENV TERRAFORM_FILENAME terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ENV TERRAFORM_SHA256 5ce4e0fc73d42b79f26ebb8c8d192bdbcff75bdc44e3d66895a48945b6ff5d48
ENV TERRAFORM_SHA256 16d9c05137ecf7f427a8cfa14ca9e7c0e73cb339f2c88ee368824ac7b4d077ea

RUN wget $TERRAFORM_URL/$TERRAFORM_FILENAME \
&& echo "$TERRAFORM_SHA256 ./$TERRAFORM_FILENAME" | sha256sum -c - \
Expand All @@ -129,10 +129,10 @@ RUN wget $TERRAFORM_URL/$TERRAFORM_FILENAME \

# Install terragrunt
# From https://github.com/gruntwork-io/terragrunt/releases
ENV TERRAGRUNT_VERSION 0.48.4
ENV TERRAGRUNT_VERSION 0.48.5
ENV TERRAGRUNT_URL https://github.com/gruntwork-io/terragrunt/releases/download/v$TERRAGRUNT_VERSION
ENV TERRAGRUNT_FILENAME terragrunt_linux_amd64
ENV TERRAGRUNT_SHA256 7b0566f09fcfb96b75683cc9ec913ff708b6df98cfe5d8775a018d77fbfd16f8
ENV TERRAGRUNT_SHA256 3f2c80256e7ce4f0ca5aaede94cebab1c03a5f75a228788d00a5f657c5abd061

RUN wget $TERRAGRUNT_URL/$TERRAGRUNT_FILENAME \
&& echo "$TERRAGRUNT_SHA256 ./$TERRAGRUNT_FILENAME" | sha256sum -c - \
Expand Down Expand Up @@ -352,10 +352,10 @@ RUN wget $AWS_CONNECT_URL/$AWS_CONNECT_FILENAME \


# Install AWS CLI v2
ENV AWS_CLI_VERSION 2.13.3
ENV AWS_CLI_VERSION 2.13.5
ENV AWS_CLI_URL https://awscli.amazonaws.com
ENV AWS_CLI_FILENAME awscli-exe-linux-x86_64-${AWS_CLI_VERSION}.zip
ENV AWS_CLI_SHA256 25a81479d3a00c7875a98a7fe341d4c924d030f04c042fa6deebe3e499fa0d1d
ENV AWS_CLI_SHA256 ffae07131d099096a5cc3f3eda5701deb7059f90eeb927a22d1b24d599e51fd0

RUN wget $AWS_CLI_URL/$AWS_CLI_FILENAME \
&& echo "$AWS_CLI_SHA256 ./$AWS_CLI_FILENAME" | sha256sum -c - \
Expand Down
6 changes: 3 additions & 3 deletions new_ver.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"AWS_CLI": "2.13.3",
"AWS_CLI": "2.13.5",
"AWS_IAM_AUTH": "0.6.10",
"BASE": "3.18.2",
"CLOUD_NUKE": "0.32.0",
Expand All @@ -14,7 +14,7 @@
"KUBECTL": "1.27.4",
"KUBECTX": "0.9.5",
"PACKER": "1.9.2",
"TERRAFORM": "1.5.3",
"TERRAFORM": "1.5.4",
"TERRAFORM_DOCS": "0.16.0",
"TERRAGRUNT": "0.48.4"
"TERRAGRUNT": "0.48.5"
}
6 changes: 3 additions & 3 deletions old_ver.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"AWS_CLI": "2.13.3",
"AWS_CLI": "2.13.5",
"AWS_IAM_AUTH": "0.6.10",
"BASE": "3.18.2",
"CLOUD_NUKE": "0.32.0",
Expand All @@ -14,7 +14,7 @@
"KUBECTL": "1.27.4",
"KUBECTX": "0.9.5",
"PACKER": "1.9.2",
"TERRAFORM": "1.5.3",
"TERRAFORM": "1.5.4",
"TERRAFORM_DOCS": "0.16.0",
"TERRAGRUNT": "0.48.4"
"TERRAGRUNT": "0.48.5"
}

0 comments on commit bfebb9d

Please sign in to comment.