Skip to content

Commit

Permalink
Merge pull request #1124 from GSA/main
Browse files Browse the repository at this point in the history
06/26/2024 Production Deploy #2
  • Loading branch information
ccostino authored Jun 27, 2024
2 parents 9ca8e0e + 0b75b55 commit 795806e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ applications:

services:
- notify-api-rds-((env))
- notify-api-redis-v70-((env))
- notify-api-redis-((env))
- notify-api-csv-upload-bucket-((env))
- name: notify-api-ses-((env))
parameters:
Expand Down
14 changes: 0 additions & 14 deletions terraform/production/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,6 @@ module "redis" { # default v6.2; delete after v7.0 resource is bound
redis_plan_name = "redis-3node-large"
}

module "redis-v70" {
source = "github.com/GSA-TTS/terraform-cloudgov//redis?ref=v1.0.0"

cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-redis-v70-${local.env}"
redis_plan_name = "redis-dev"
json_params = jsonencode(
{
"engineVersion" : "7.0",
}
)
}

module "csv_upload_bucket" {
source = "github.com/GSA-TTS/terraform-cloudgov//s3?ref=v1.0.0"

Expand Down
9 changes: 9 additions & 0 deletions terraform/staging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ module "database" {
rds_plan_name = "micro-psql"
}

module "redis" { # default v6.2; delete after v7.0 resource is bound
source = "github.com/GSA-TTS/terraform-cloudgov//redis?ref=v1.0.0"

cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-redis-${local.env}"
redis_plan_name = "redis-dev"
}

module "redis-v70" {
source = "github.com/GSA-TTS/terraform-cloudgov//redis?ref=v1.0.0"

Expand Down

0 comments on commit 795806e

Please sign in to comment.