Skip to content

Commit

Permalink
fix(infra): only default to 2 tasks in prod (passportxyz#2560)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schultz authored Jun 6, 2024
1 parent 1c83f48 commit e6ae7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ const service = new aws.ecs.Service(
`passport-iam`,
{
cluster: cluster.arn,
desiredCount: 2,
desiredCount: stack === "production" ? 2 : 1,
enableEcsManagedTags: true,
enableExecuteCommand: false,
launchType: "FARGATE",
Expand Down

0 comments on commit e6ae7d0

Please sign in to comment.