From afb379d051b8cc92fa0730e2c994b1b38e56292f Mon Sep 17 00:00:00 2001 From: Sarah French Date: Tue, 26 Mar 2024 18:13:38 +0000 Subject: [PATCH 1/2] Update build-environment image to use Terraform 1.8.0 The intention of this change is to enable running provider-defined functions in VCR, as they're a new feature in 1.8.0 --- .ci/containers/build-environment/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/containers/build-environment/Dockerfile b/.ci/containers/build-environment/Dockerfile index d2f11e881954..25a786aa091c 100644 --- a/.ci/containers/build-environment/Dockerfile +++ b/.ci/containers/build-environment/Dockerfile @@ -23,7 +23,7 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH" WORKDIR $GOPATH # terraform binary used by tfv/tgc -COPY --from=hashicorp/terraform:1.4.2 /bin/terraform /bin/terraform +COPY --from=hashicorp/terraform:1.8.0 /bin/terraform /bin/terraform SHELL ["/bin/bash", "-c"] From 560b7d97f81a384e80415bd98af0601bcc05f577 Mon Sep 17 00:00:00 2001 From: Sarah French <15078782+SarahFrench@users.noreply.github.com> Date: Thu, 9 May 2024 21:16:42 +0100 Subject: [PATCH 2/2] Bump to 1.8.3 --- .ci/containers/build-environment/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/containers/build-environment/Dockerfile b/.ci/containers/build-environment/Dockerfile index 25a786aa091c..215870eca2ee 100644 --- a/.ci/containers/build-environment/Dockerfile +++ b/.ci/containers/build-environment/Dockerfile @@ -23,7 +23,7 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH" WORKDIR $GOPATH # terraform binary used by tfv/tgc -COPY --from=hashicorp/terraform:1.8.0 /bin/terraform /bin/terraform +COPY --from=hashicorp/terraform:1.8.3 /bin/terraform /bin/terraform SHELL ["/bin/bash", "-c"]