Created
September 21, 2021 05:37
-
-
Save jeremyyeo/7d3e9d2b63059f17a48704ace4a22bd9 to your computer and use it in GitHub Desktop.
Install terraform on macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| curl -sS https://releases.hashicorp.com/terraform/1.0.7/terraform_1.0.7_darwin_amd64.zip > terraform.zip && | |
| unzip terraform.zip && | |
| mv terraform /usr/local/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment