Add demo terraform environment

This commit is contained in:
Ryan Ahearn
2022-11-02 09:08:08 -04:00
parent 90b5261821
commit 7ee1945893
8 changed files with 89 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
locals {
cf_org_name = "gsa-tts-benefits-studio-prototyping"
cf_space_name = "notify-demo"
cf_space_name = "notify-prod"
env = "production"
app_name = "notifications-api"
recursive_delete = false
@@ -16,7 +16,7 @@ module "database" {
env = local.env
app_name = local.app_name
recursive_delete = local.recursive_delete
rds_plan_name = "micro-psql"
rds_plan_name = "TKTK-production-rds-plan"
}
module "redis" {
@@ -29,7 +29,7 @@ module "redis" {
env = local.env
app_name = local.app_name
recursive_delete = local.recursive_delete
redis_plan_name = "redis-dev"
redis_plan_name = "TKTK-production-redis-plan"
}
module "csv_upload_bucket" {