Skip to content

Commit 10b80ce

Browse files
committed
fixes
1 parent 3e303a4 commit 10b80ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.tools/test/stacks/plugin/typescript/plugin_stack.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class PluginStack extends cdk.Stack {
2727

2828
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
2929
super(scope, id, props);
30-
g
30+
3131
const acctConfig = readAccountConfig("../../config/targets.yaml");
3232
const resourceConfig = readResourceConfig("../../config/resources.yaml");
3333

@@ -118,7 +118,7 @@ g
118118

119119
const containerImageUri = `${this.adminAccountId}.dkr.ecr.us-east-1.amazonaws.com/${toolName}:latest`;
120120

121-
// Convert JSON to environment variable format for Batch
121+
// Convert JSON to environment variable format for Batch.
122122
const environmentVariables = Object.entries(variableConfigJson).map(([key, value]) => ({
123123
name: key,
124124
value: value as string,
@@ -213,7 +213,7 @@ g
213213

214214
// Grant permissions to allow the function to receive messages from the queue.
215215
sqsQueue.grantConsumeMessages(lambdaFunction);
216-
216+
217217
// Add IAM policy to the Lambda function's execution role to allow it to receive messages from the SQS queue.
218218
lambdaFunction.addToRolePolicy(
219219
new iam.PolicyStatement({

0 commit comments

Comments
 (0)