Skip to content

Commit

Permalink
Software Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
snw35 committed Aug 11, 2024
1 parent 4cfeb96 commit 4139fb8
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 @@ -85,10 +85,10 @@ RUN wget $HELM_URL/$HELM_FILENAME \

# Install terraform
# From https://www.terraform.io/downloads.html
ENV TERRAFORM_VERSION 1.9.3
ENV TERRAFORM_VERSION 1.9.4
ENV TERRAFORM_URL https://releases.hashicorp.com/terraform/$TERRAFORM_VERSION
ENV TERRAFORM_FILENAME terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ENV TERRAFORM_SHA256 e52520cf6d677155e69a8fcfe64054891f4d991802b0d36d4c8b670d60a7e899
ENV TERRAFORM_SHA256 6e9b2cc741875ab906d800af3134b076489f049565e0a1dbdb6deacd91f5054c

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

# Install terragrunt
# From https://github.com/gruntwork-io/terragrunt/releases
ENV TERRAGRUNT_VERSION 0.66.1
ENV TERRAGRUNT_VERSION 0.66.3
ENV TERRAGRUNT_URL https://github.com/gruntwork-io/terragrunt/releases/download/v$TERRAGRUNT_VERSION
ENV TERRAGRUNT_FILENAME terragrunt_linux_amd64
ENV TERRAGRUNT_SHA256 3b8bad17cd8ef59ee31c6948f233728ed2fb7b8711293234766c496278951276
ENV TERRAGRUNT_SHA256 12c263622104dca2f9a6171f9cc50465da1ec409e738e2637a121145c247815d

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


# Install AWS CLI v2
ENV AWS_CLI_VERSION 2.17.22
ENV AWS_CLI_VERSION 2.17.27
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 f7d473737dbcbed360d4f542b1b4dd4d737ac5121a98a5814404b2bbf746ae53
ENV AWS_CLI_SHA256 0b03b4b6ce1358537ce11a021c46bcda90f9532b1ab7d264e108a8fbcac948f2

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.17.22",
"AWS_CLI": "2.17.27",
"AWS_IAM_AUTH": "0.6.22",
"BASE": "bookworm-20240722-slim",
"CLOUD_NUKE": "0.37.1",
Expand All @@ -13,7 +13,7 @@
"KUBECTX": "0.9.5",
"KUBESPY": "0.6.3",
"PACKER": "1.11.2",
"TERRAFORM": "1.9.3",
"TERRAFORM": "1.9.4",
"TERRAFORM_DOCS": "0.18.0",
"TERRAGRUNT": "0.66.1"
"TERRAGRUNT": "0.66.3"
}
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.17.22",
"AWS_CLI": "2.17.27",
"AWS_IAM_AUTH": "0.6.22",
"BASE": "bookworm-20240722-slim",
"CLOUD_NUKE": "0.37.1",
Expand All @@ -13,7 +13,7 @@
"KUBECTX": "0.9.5",
"KUBESPY": "0.6.3",
"PACKER": "1.11.2",
"TERRAFORM": "1.9.3",
"TERRAFORM": "1.9.4",
"TERRAFORM_DOCS": "0.18.0",
"TERRAGRUNT": "0.66.1"
"TERRAGRUNT": "0.66.3"
}

0 comments on commit 4139fb8

Please sign in to comment.