This project sets up Postgres 9.6 on AWS and supports encryption at rest.
TF_VAR_user=anand
TF_VAR_owner=anand
TF_VAR_environment=dev
TF_VAR_dbname=postgres
AWS_ACCESS_KEY_ID=test
AWS_SECRET_ACCESS_KEY=test2
ACTION=deploy
docker build -f ./provisioner/Dockerfile -t rds-provisioner .
docker run --env-file .envrc rds-provisioner
This project uses GitHub Actions to release new versions of the terraform module through semantic-release NPM package. GitHub Actions also performs a terraform plan
terraform fmt
to ensure module is tested and formatted properly.