Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/archtaqi/infrastructure-as-code
Hands-on With Terraform for managing AWS resources
https://github.com/archtaqi/infrastructure-as-code
aws terraform
Last synced: about 8 hours ago
JSON representation
Hands-on With Terraform for managing AWS resources
- Host: GitHub
- URL: https://github.com/archtaqi/infrastructure-as-code
- Owner: ArchTaqi
- Created: 2021-07-24T16:02:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-12T11:52:15.000Z (about 3 years ago)
- Last Synced: 2023-02-27T09:26:35.586Z (over 1 year ago)
- Topics: aws, terraform
- Language: HCL
- Homepage:
- Size: 174 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terraform {AWS}
> Hands-on With Terraform for managing AWS resources
## About Terraform
- An immutable IAC.
### Configure AWS CLI
`aws configure --profile archtaqi-1`
To verify;
`cat .aws/credentials`
### Terraform workspace
```
terraform init
# expect a warning, don't worry it's an idempotent operation
terraform workspace new dev
terraform workspace select dev
terraform plan
```Laravelapi.juandmegon.com