Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 456 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 456 Bytes

Terraform on AWS with SRE, IaC & DevOps

AWS Terraform Logo

How to run Terraform scripts

To download the required providers and plugins:

terraform init

To validate the configurations:

terraform validate

To format the configurations:

terraform fmt

To generate an execution plan:

terraform plan

To apply the changes:

terraform apply

To destroy the infrastructure:

terraform destroy