Skip to content

Commit

Permalink
fix(lint): add commas
Browse files Browse the repository at this point in the history
  • Loading branch information
briancaffey committed Jun 6, 2021
1 parent 3a56e01 commit 9e1947d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/django-eks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ export class DjangoEks extends cdk.Construct {
StringEquals: new cdk.CfnJson(scope, 'FederatedPrincipalCondition', {
value: {
[`${oidcProviderId}:aud`]: 'sts.amazonaws.com',
[`${oidcProviderId}:sub`]: `system:serviceaccount:app:${POD_SERVICE_ACCOUNT_NAME}`
}
})
}, 'sts:AssumeRoleWithWebIdentity'
[`${oidcProviderId}:sub`]: `system:serviceaccount:app:${POD_SERVICE_ACCOUNT_NAME}`,
},
}),
}, 'sts:AssumeRoleWithWebIdentity',
);

/**
Expand Down

0 comments on commit 9e1947d

Please sign in to comment.