Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashwinpn/notes-on-terraform
Learnings, Experiments and Readings on Terraform.
https://github.com/ashwinpn/notes-on-terraform
Last synced: about 5 hours ago
JSON representation
Learnings, Experiments and Readings on Terraform.
- Host: GitHub
- URL: https://github.com/ashwinpn/notes-on-terraform
- Owner: ashwinpn
- Created: 2021-02-14T21:36:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-14T22:00:46.000Z (almost 4 years ago)
- Last Synced: 2023-10-19T22:45:53.452Z (about 1 year ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes-on-Terraform
Learnings, Experiments and Readings on Terraform.- HashiCorp Configuration Language.
[ami, instance_type]## Resource Graph
Terraform creates a graph of all the resources, and parallelizes the modification / creation of non-dependent resources. Hence, Terraform builds infrastructure as efficiently as is possible, and operators also get valubale information about the dependencies in their infrastructure.## Infrastructure as Code
- Save Time: Easy to Reuse.
- High readability.
- Make operations more structured with terraform plan.Also,
- Platfrom Agnostic - Define configuration files to manage different cloud porviders (an heterogeneous environment) without the need to curate the workflow for each different provider.
- Operator Confidence## Commands
- ``` terraform plan```
- ```terraform init```
- ```terraform apply```