Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchedmob committed Jun 12, 2024
1 parent 0fdc33d commit 7d7e954
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,15 @@ export class ApiLambdaCrudDynamoDBStack extends Stack {
);

new Policy(this, 'getMeetupTokenLambdaInvokePolicy', {
policyName: 'getMeetupTokenLambdaInvokePolicy',
statements: [
new PolicyStatement({
actions: ['lambda:InvokeFunction'],
resources: [getMeetupTokenLambda.functionArn],
effect: Effect.ALLOW
})
]
});
policyName: 'getMeetupTokenLambdaInvokePolicy',
statements: [
new PolicyStatement({
actions: ['lambda:InvokeFunction'],
resources: [getMeetupTokenLambda.functionArn],
effect: Effect.ALLOW,
}),
],
});

const getMeetupTokenRole = Role.fromRoleArn(
this,
Expand Down

0 comments on commit 7d7e954

Please sign in to comment.