A template for quickly spinning up an AWS full stack
AWS | Terraform | AWS Amplify Framework
For local devlopment and testing
All infrastructure code will reside within the Terraform
dir.
Create a envVariables.tfvars
file in the root directory with the following variables:
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
GITHUB_PAT=""
cd .\Terraform\
terraform init
terraform plan -var-file="envVariables.tfvars"
terraform apply -var-file="envVariables.tfvars"
terraform destroy -var-file="envVariables.tfvars"