Skip to content

Commit

Permalink
Deploy v1.97.13
Browse files Browse the repository at this point in the history
  • Loading branch information
willroberts committed May 5, 2023
1 parent cf34d0a commit 9e63679
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terraform/staging/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "ecs_service_api" {
capacity_provider = module.ecs_cluster.spot_capacity_provider
task_role = module.ecs_cluster.task_role
image_name = "public.ecr.aws/${var.ecr_registry_id}/${module.ecr_repository_api.id}"
deployed_version = "1.97.12"
deployed_version = "1.97.13"
container_count = 1
container_mem = 450
service_port = 3000
Expand Down Expand Up @@ -58,7 +58,7 @@ module "ecs_service_game" {
capacity_provider = module.ecs_cluster.spot_capacity_provider
task_role = module.ecs_cluster.task_role
image_name = "public.ecr.aws/${var.ecr_registry_id}/${module.ecr_repository_game.id}"
deployed_version = "1.97.12"
deployed_version = "1.97.13"
container_count = 1
container_mem = 350
service_port = 8001
Expand All @@ -83,7 +83,7 @@ module "ecs_service_sp" {
capacity_provider = module.ecs_cluster.spot_capacity_provider
task_role = module.ecs_cluster.task_role
image_name = "public.ecr.aws/${var.ecr_registry_id}/${module.ecr_repository_sp.id}"
deployed_version = "1.97.12"
deployed_version = "1.97.13"
container_count = 1
container_mem = 350
service_port = 8000
Expand All @@ -107,7 +107,7 @@ module "ecs_service_worker" {
capacity_provider = module.ecs_cluster.spot_capacity_provider
task_role = module.ecs_cluster.task_role
image_name = "public.ecr.aws/${var.ecr_registry_id}/${module.ecr_repository_worker.id}"
deployed_version = "1.97.12"
deployed_version = "1.97.13"
container_count = 1
container_mem = 450

Expand Down Expand Up @@ -135,7 +135,7 @@ module "ecs_service_migrate" {
capacity_provider = module.ecs_cluster.spot_capacity_provider
task_role = module.ecs_cluster.task_role
image_name = "public.ecr.aws/${var.ecr_registry_id}/${module.ecr_repository_migrate.id}"
deployed_version = "1.97.12"
deployed_version = "1.97.13"
container_count = 0 # Change to 1 to apply database migrations.
container_mem = 350

Expand Down

0 comments on commit 9e63679

Please sign in to comment.