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
78
@@ -74,20 +81,30 @@ brew tap hashicorp/tap
74
81
brew install hashicorp/tap/terraform
75
82
```
76
83
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.
84
+
If you don't have brew installed or prefer to directly install via binary, you can download [Terraform for ARM64](https://developer.hashicorp.com/terraform/install#darwin) directly from the Terraform website.
78
85
79
-
## Confirm proper executable install.
86
+
## Run the Terraform executable and print the version
87
+
88
+
After installing, you can enter the following command to verify the installation:
80
89
81
-
Upon completing install, from the command line, you can enter the following to verify proper installation.
82
90
```bash { target="ubuntu:latest" }
83
91
terraform version
84
92
```
85
93
86
-
Running this command should return something similar to:
94
+
The output will be similar to the output shown below.
87
95
88
-
```bash
96
+
For Linux:
97
+
98
+
```output
99
+
Terraform v1.10.5
100
+
on linux_arm64
101
+
```
102
+
103
+
For macOS:
104
+
105
+
```output
89
106
Terraform v1.10.5
90
107
on darwin_arm64
91
108
```
92
109
93
-
If you instead receive an error, please try to reinstall again.
0 commit comments