You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have [brew](https://brew.sh/) installed, installing Terraform for macOS is simple as:
71
+
72
+
```bash
73
+
brew tap hashicorp/tap
74
+
brew install hashicorp/tap/terraform
75
+
```
76
+
77
+
If you don't have brew installed or prefer to directly install via binary, [Download Terraform for Arm64](https://developer.hashicorp.com/terraform/install#darwin) directly from the Terraform website.
78
+
79
+
## Confirm proper executable install.
80
+
81
+
Upon completing install, from the command line, you can enter the following to verify proper installation.
70
82
```bash { target="ubuntu:latest" }
71
83
terraform version
72
84
```
85
+
86
+
Running this command should return something similar to:
87
+
88
+
```bash
89
+
Terraform v1.10.5
90
+
on darwin_arm64
91
+
```
92
+
93
+
If you instead receive an error, please try to reinstall again.
0 commit comments