File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.tools/test/stacks/plugin/typescript Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
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 ,
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 ( {
You can’t perform that action at this time.
0 commit comments