Skip to content

Commit

Permalink
update terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin07 committed Jun 6, 2024
1 parent ea6c2ed commit 9e2fdab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def RemoveTool(desc, name) {
}

def Tools = []
Tools.add(name: 'Terraform', url: 'https://releases.hashicorp.com/terraform/1.8.3/terraform_1.8.3_linux_amd64.zip')
Tools.add(name: 'Packer', url: 'https://releases.hashicorp.com/packer/1.10.3/packer_1.10.3_linux_amd64.zip')
Tools.add(name: 'Terraform', url: 'https://releases.hashicorp.com/terraform/1.8.5/terraform_1.8.5_linux_amd64.zip')
Tools.add(name: 'Packer', url: 'https://releases.hashicorp.com/packer/1.11.0/packer_1.11.0_linux_amd64.zip')

def inst = Jenkins.getInstance()
def desc = inst.getExtensionList(com.cloudbees.jenkins.plugins.customtools.CustomTool.DescriptorImpl.class)[0]
Expand Down
8 changes: 4 additions & 4 deletions pipelines/dockerfiles/tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ RUN apk --no-cache add curl unzip

ARG INSTALL_DIR="/usr/local/bin"

ARG TERRAFORM_VERSION=1.8.3
ARG TERRAFORM_VERSION=1.8.5
ARG TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ARG TERRAFORM_FILE=terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ARG TERRAFORM_SHA256=4ff78474d0407ba6e8c3fb9ef798f2822326d121e045577f80e2a637ec33f553
ARG TERRAFORM_SHA256=bb1ee3e8314da76658002e2e584f2d8854b6def50b7f124e27b957a42ddacfea

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${TERRAFORM_FILE} ${TERRAFORM_URL}; \
sha256sum ${TERRAFORM_FILE} | grep ${TERRAFORM_SHA256}; \
Expand Down Expand Up @@ -49,10 +49,10 @@ RUN set -exo pipefail; curl -fsSL --retry 3 -o ${HELMFILE_FILE} ${HELMFILE_URL};
tar -xvzf ${HELMFILE_FILE} -C ${INSTALL_DIR} helmfile; \
chmod +x ${INSTALL_DIR}/helmfile

ARG GOMPLATE_VERSION=3.11.7
ARG GOMPLATE_VERSION=3.11.8
ARG GOMPLATE_URL=https://github.com/hairyhenderson/gomplate/releases/download/v${GOMPLATE_VERSION}/gomplate_linux-amd64
ARG GOMPLATE_FILE=gomplate_linux-amd64
ARG GOMPLATE_SHA256=adfa5c7412610dde5fadea07a6b25e7cfa2db462a55b128bdce2ec8fcff22136
ARG GOMPLATE_SHA256=edd7e578094a08e97552d002e84cce576b4df61bb6e29724c2026dc9c9afbc38

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${GOMPLATE_FILE} ${GOMPLATE_URL}; \
sha256sum ${GOMPLATE_FILE} | grep ${GOMPLATE_SHA256}; \
Expand Down

0 comments on commit 9e2fdab

Please sign in to comment.