Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SamWSoftware/9fa03b12bdb226018125c4ec9762c4b7 to your computer and use it in GitHub Desktop.
Save SamWSoftware/9fa03b12bdb226018125c4ec9762c4b7 to your computer and use it in GitHub Desktop.
functions: {
UserLogin: {
handler: `src/handler.main`,
environment: {
USERS_TABLE: { Ref: 'UsersTable' },
},
iamRoleStatements: [
{
Effect: 'Allow',
Action: 'dynamodb:GetItem',
Resource: { 'Fn::GetAtt': ['UsersTable', 'Arn'] },
},
{
Effect: 'Allow',
Action: 'dynamodb:PutItem',
Resource: { 'Fn::GetAtt': ['CompaniesTable', 'Arn'] },
},
],
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment