Skip to content

Commit

Permalink
fix typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
larisa17 committed Jul 2, 2024
1 parent eef0ec0 commit 514fbde
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ const passportInfraStack = new pulumi.StackReference(
);

const passportClusterArn = passportInfraStack.getOutput("passportClusterArn");
const passportClusterName = passportInfraStack.getOutput("passportClusterName");
export const passportClusterName = passportInfraStack.getOutput(
"passportClusterName"
);
export const passportClusterNameArn = passportClusterArn;

const vpcId = coreInfraStack.getOutput("vpcId");
Expand Down Expand Up @@ -324,7 +326,7 @@ const service_data = DOCKER_SCROLL_SERVICE_IMAGE.apply((drk_image) => {
},
evaluationPeriods: 1,
metricName: "RunningTaskCount",
name: `RunningTaskCount-${name}`,
name: `RunningTaskCount-scroll-badge`,
namespace: "ECS/ContainerInsights",
period: 300,
statistic: "Average",
Expand Down

0 comments on commit 514fbde

Please sign in to comment.