Create cloud infrastructure with Terraform.
terraform init
terraform apply
develop
- Development environmentproduction
- Production environmentmodules
- Terraform modules
terraform init
- Initialize the Terraform configurationterraform init -upgrade
- Install the latest module and provider versionsterraform validate
- Check whether the configuration is validterraform plan
- Show changes required by the current configurationterraform apply
- Create or update infrastructureterraform destroy
- Destroy previously-created infrastructure
https://github.com/TomorrowTechReviews/aws-cdk-ts/tree/main/containers/chats
Build on Apple Silicon M1:
docker buildx build --platform linux/amd64 -t chat .