https://github.com/dgapitts/terraform-aws-demo
Terraform demos run macosx
https://github.com/dgapitts/terraform-aws-demo
Last synced: 3 months ago
JSON representation
Terraform demos run macosx
- Host: GitHub
- URL: https://github.com/dgapitts/terraform-aws-demo
- Owner: dgapitts
- Created: 2022-07-21T22:10:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T14:10:17.000Z (over 3 years ago)
- Last Synced: 2025-02-26T09:46:43.466Z (over 1 year ago)
- Language: HCL
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-aws-demo
## Other related projects
I have a couple of older vagrant centos7 training projects
* [vagrant-c7-terraform-docker](https://github.com/dgapitts/vagrant-c7-terraform-docker) following hashicorp training, a nice set of basic exercises
* [vagrant-c7-aws-terraform-ansible](https://github.com/dgapitts/vagrant-c7-aws-terraform-ansible) which I was using for DevOpsDays Amsterdam training
I'm still working through the hashicorp training, but switching back to developing directly on my laptop, using the manual install of terraform (i.e. download binary and add to PATH).
## Working through hashicorp learn terraform demo for aws
### manual download of terraform for mac (amd64)
First I manually installed terraform on my mac, i.e. following
* browse online https://www.terraform.io/downloads and then under MACOS BINARY DOWNLOAD I was able to select amd64 (choose arm64 if you're on the new M1/M2 processes)
* then following https://learn.hashicorp.com/tutorials/terraform/install-cli "unpack and move to bin"
```
~/Downloads $ ls -l terraform_1.3.3_darwin_amd64.zip
-rw-r--r--@ 1 dave staff 20843907 Oct 20 12:16 terraform_1.3.3_darwin_amd64.zip
~/Downloads $ unzip terraform_1.3.3_darwin_amd64.zip
Archive: terraform_1.3.3_darwin_amd64.zip
inflating: terraform
~/Downloads $ mv ~/Downloads/terraform /usr/local/bin/
```
* final test version
```
~/Downloads $ terraform --version
Terraform v1.3.3
on darwin_amd64
```