> For the complete documentation index, see [llms.txt](https://developers.incidents.cloud.solarwinds.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.incidents.cloud.solarwinds.com/integration-and-extensibility/terraform/installing.md).

# Install Terraform

Terraform ships as a single binary file. The examples below include installation information for popular operating systems.

For official instructions on installing Terraform, refer to [Install Terraform](https://learn.hashicorp.com/terraform).

## Linux

On Linux, download and place the binary in your `PATH`.

```sh
$ wget -q https://releases.hashicorp.com/terraform/1.3.2/terraform_1.3.2_linux_arm64.zip

$ unzip terraform_1.3.2_linux_amd64.zip
Archive:  terraform_1.3.2_linux_amd64.zip
  inflating: terraform

$ sudo mv terraform /usr/local/bin/terraform

$ terraform version
Terraform v1.3.2
```

## Mac

The easiest way to install Terraform on macOS is with Homebrew.

```sh
$ brew install terraform

==> Downloading https://ghcr.io/v2/homebrew/core/terraform/manifests/1.3.2
######################################################################## 100.0%
==> Downloading https://ghcr.io/v2/homebrew/core/terraform/blobs/sha256:95ce6ce52c67575858cfd9d65058cf31ff9de8503208c7e75887571f17c79cf5
==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:95ce6ce52c67575858cfd9d65058cf31ff9de8503208c7e75887571f17c79cf5?se=2022-10-13T09%3A25%3A00
######################################################################## 100.0%
==> Pouring terraform--1.3.2.arm64_monterey.bottle.tar.gz
🍺  /opt/homebrew/Cellar/terraform/1.3.2: 6 files, 64MB

$ terraform version
Terraform v1.3.2
```

## Windows

1. Download the 32 or 64-bit executable from the [Download Terraform](https://www.terraform.io/downloads) page.
2. Unzip and place `terraform.exe` somewhere in your path.

## Other

For additional installers, refer to the [Download Terraform](https://www.terraform.io/downloads) page.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.incidents.cloud.solarwinds.com/integration-and-extensibility/terraform/installing.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
