Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.15 KB

README.md

File metadata and controls

44 lines (30 loc) · 1.15 KB

Infrastructure for the final project of AWS course

The main objective of this repository is to establish a foundation for the future infrastructure of my project on AWS. The .terraform file will serve as the starting point for defining resources by code.

Prerequisites

  • Terraform

Deployment

Once you configured your AWS credentials and moved to the same directory as main.tf, use the next commands in order:

terraform init

This command initializes the working directory and downloads the Terraform providers specified in the configuration file.

terraform validate

This command checks the syntax of the Terraform code in the working directory and checks for errors.

terraform plan

This command creates an execution plan that shows the changes Terraform will make to the infrastructure.

terraform apply

This command applies the changes defined in the execution plan and creates or modifies infrastructure resources as needed.

terraform destroy

This command destroys what was created.

License

MIT

Authors