Skip to content

Commit 0cfeebc

Browse files
author
RoseHJM
committed
Updated terraform zip source
1 parent 47a4e9a commit 0cfeebc

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

articles/deployment-environments/how-to-configure-extensibility-terraform-container-image.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,15 @@ This statement pulls the most recently published core image, and makes it a basi
4343

4444
### Install Terraform in a Dockerfile
4545

46-
You can install the Terraform CLI to an executable location so that it can be used in your deployment and deletion scripts. Here's an example of that process, installing version 1.5.5 of the Terraform CLI:
46+
You can install the Terraform CLI to an executable location so that it can be used in your deployment and deletion scripts.
47+
48+
> [!Tip]
49+
> You can download the latest version of the Terraform CLI from [Terraform](https://aka.ms/deployment-environments/terraform-cli-zip).
50+
51+
Here's an example of that process, installing version 1.7.5 of the Terraform CLI:
4752

4853
```azure cli
49-
RUN wget -O terraform.zip https://releases.hashicorp.com/terraform/1.7.4/terraform_1.5.5_linux_amd64.zip
54+
RUN wget -O terraform.zip https://releases.hashicorp.com/terraform/1.7.5/terraform_1.7.5_linux_amd64.zip
5055
RUN unzip terraform.zip && rm terraform.zip
5156
RUN mv terraform /usr/bin/terraform
5257
```

0 commit comments

Comments
 (0)