Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itzzjb/terraform-basics
Learning the basics of terraform by builing a simple infrastructure in AWS
https://github.com/itzzjb/terraform-basics
basics infrastructure-as-code terraform
Last synced: about 1 month ago
JSON representation
Learning the basics of terraform by builing a simple infrastructure in AWS
- Host: GitHub
- URL: https://github.com/itzzjb/terraform-basics
- Owner: itzzjb
- License: mit
- Created: 2024-08-27T16:52:22.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-27T18:18:12.000Z (6 months ago)
- Last Synced: 2024-11-09T06:44:56.208Z (3 months ago)
- Topics: basics, infrastructure-as-code, terraform
- Language: HCL
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Basics
`terraform init` — In order to prepare the working directory for use with Terraform, the command performs Backend Initialization, Child Module Installation, and Plugin Installation.
`terraform plan` — Plan will generate an execution plan, showing you what actions will be taken without actually performing the planned actions.
`terraform apply` — Create or update infrastructure depending on the configuration files. By default, a plan will be generated first and will need to be approved before it is applied.
`terraform destroy` — Destroy the infrastructure managed by Terraform.
`terraform refresh` — Modify the state file with updated metadata containing information on the resources being managed in Terraform. Will not modify your infrastructure.