Skip to content

Commit bc5a60d

Browse files
Merge pull request #272506 from RoseHJM/ade-terraform-link-fix
ADE - Updated terraform zip source
2 parents 71b8e90 + 0a4b9da commit bc5a60d

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,14 +43,19 @@ 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+
Here's an example of that process, installing version 1.7.5 of the Terraform CLI:
4749

4850
```azure cli
49-
RUN wget -O terraform.zip https://releases.hashicorp.com/terraform/1.7.4/terraform_1.5.5_linux_amd64.zip
51+
RUN wget -O terraform.zip https://releases.hashicorp.com/terraform/1.7.5/terraform_1.7.5_linux_amd64.zip
5052
RUN unzip terraform.zip && rm terraform.zip
5153
RUN mv terraform /usr/bin/terraform
5254
```
5355

56+
> [!Tip]
57+
> You can get the download URL for your preferred version of the Terraform CLI from [Hashicorp releases](https://aka.ms/deployment-environments/terraform-cli-zip).
58+
5459
The ADE sample images are based on the Azure CLI image, and have the ADE CLI and JQ packages preinstalled. You can learn more about the [Azure CLI](/cli/azure/), and the [JQ package](https://devdocs.io/jq/).
5560

5661
To install any more packages you need within your image, use the RUN statement.

0 commit comments

Comments
 (0)