File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ RUN mkdir -p /opt/terraform
54
54
# The below step is optional if you wish to keep the existing version.
55
55
# See https://github.com/coder/coder/blob/main/provisioner/terraform/install.go#L23-L24
56
56
# for supported Terraform versions.
57
- ARG TERRAFORM_VERSION=1.8.4
57
+ ARG TERRAFORM_VERSION=1.9.2
58
58
RUN apk update && \
59
59
apk del terraform && \
60
60
curl -LOs https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
@@ -79,7 +79,7 @@ ADD filesystem-mirror-example.tfrc /home/coder/.terraformrc
79
79
# Optionally, we can "seed" the filesystem mirror with common providers.
80
80
# Comment out lines 40-49 if you plan on only using a volume or network mirror:
81
81
WORKDIR /home/coder/.terraform.d/plugins/registry.terraform.io
82
- ARG CODER_PROVIDER_VERSION=0.12 .1
82
+ ARG CODER_PROVIDER_VERSION=1.0 .1
83
83
RUN echo "Adding coder/coder v${CODER_PROVIDER_VERSION}" \
84
84
&& mkdir -p coder/coder && cd coder/coder \
85
85
&& curl -LOs https://github.com/coder/terraform-provider-coder/releases/download/v${CODER_PROVIDER_VERSION}/terraform-provider-coder_${CODER_PROVIDER_VERSION}_linux_amd64.zip
Original file line number Diff line number Diff line change 250
250
main () {
251
251
MAINLINE=1
252
252
STABLE=0
253
- TERRAFORM_VERSION=" 1.8.4 "
253
+ TERRAFORM_VERSION=" 1.9.2 "
254
254
255
255
if [ " ${TRACE-} " ]; then
256
256
set -x
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ var (
20
20
// when Terraform is not available on the system.
21
21
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
22
22
// NOTE: Keep this in sync with the version in install.sh.
23
- TerraformVersion = version .Must (version .NewVersion ("1.8.4 " ))
23
+ TerraformVersion = version .Must (version .NewVersion ("1.9.2 " ))
24
24
25
25
minTerraformVersion = version .Must (version .NewVersion ("1.1.0" ))
26
- maxTerraformVersion = version .Must (version .NewVersion ("1.8 .9" )) // use .9 to automatically allow patch releases
26
+ maxTerraformVersion = version .Must (version .NewVersion ("1.9 .9" )) // use .9 to automatically allow patch releases
27
27
28
28
terraformMinorVersionMismatch = xerrors .New ("Terraform binary minor version mismatch." )
29
29
)
You can’t perform that action at this time.
0 commit comments