CODE I DEVELOPED FOR A COMPANY THAT SHUT DOWN BEFORE CODE WAS RELEASED TO ANY ENVIRONMENT (i.e. Dev, Stage, Prod)
- CODE IN THIS REPOSITORY WAS NEVER, AND HAS NEVER, BEEN IN PRODUCTION WITH ANY COMPANY
TERRAFORM
validate - checks for errors in terraform code - code: docker-compose -f docker-compose.yml run --rm terraform validate
plan - this outputs the plan that WILL be made, but no plan made yet - code: docker-compose -f docker-compose.yml run --rm terraform validate
apply - happy with plan? yes, then hit apply: docker-compose -f docker-compose.yml run --rm terraform apply
terraform apply -lock=false - the dynamo table need to be made via terraform -- tf needs to create this not us manually via the AWS console
Terraform workspaces
delete Delete a workspace
list List Workspaces
new Create a new workspace
select Select a workspace
show Show the name of the current workspace
QUICKTYPE