Skip to content

Commit

Permalink
chore: task count correction
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schultz committed Jul 3, 2024
1 parent 5625ca3 commit 6d41708
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 51 deletions.
47 changes: 0 additions & 47 deletions .github/workflows/refresh_production_resource.yml

This file was deleted.

7 changes: 3 additions & 4 deletions infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ export const VC_SECRETS_ARN = `${process.env["VC_SECRETS_ARN"]}`;

export const ROUTE53_DOMAIN = `${process.env["ROUTE_53_DOMAIN"]}`;

export const DOCKER_IMAGE_TAG = `${
process.env.SCROLL_BADGE_SERVICE_IMAGE_TAG || ""
}`;
export const DOCKER_IMAGE_TAG = `${process.env.SCROLL_BADGE_SERVICE_IMAGE_TAG || ""
}`;

const current = aws.getCallerIdentity({});
const regionData = aws.getRegion({});
Expand Down Expand Up @@ -254,7 +253,7 @@ const service_data = DOCKER_SCROLL_SERVICE_IMAGE.apply((drk_image) => {
`scroll-badge-service`,
{
cluster: passportClusterArn,
desiredCount: stack === "production" ? 2 : 1,
desiredCount: 1,
enableEcsManagedTags: true,
enableExecuteCommand: false,
launchType: "FARGATE",
Expand Down

0 comments on commit 6d41708

Please sign in to comment.