mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 06:33:52 -05:00
Restore v7.0 Redis at the correct plan name in Prod
This commit is contained in:
@@ -12,7 +12,7 @@ applications:
|
||||
- route: ((cloud_dot_gov_route))
|
||||
|
||||
services:
|
||||
- notify-admin-redis-((env))
|
||||
- notify-admin-redis-v70-((env))
|
||||
- notify-api-csv-upload-bucket-((env))
|
||||
- notify-admin-logo-upload-bucket-((env))
|
||||
|
||||
|
||||
@@ -16,6 +16,20 @@ 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-3node-large"
|
||||
json_params = jsonencode(
|
||||
{
|
||||
"engineVersion" : "7.0",
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
module "logo_upload_bucket" {
|
||||
source = "github.com/18f/terraform-cloudgov//s3?ref=v0.7.1"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user