Provisioning AWS resources for an employee login app built with Java using Terraform.
infrastructure/main.tf calls to the modules in infrastructure/modules. /modules contains the main setting file for all the services we are looking to set up, the expected outputs and the variables we need.
-
Initialize Terraform
terraform init
-
Plan the Infrastructure
terraform plan -out=tfplan
-
Apply the Infrastructure
terraform apply tfplan
If you want to use the repo
git clone <repo link>