Package Exports
- @serverless/aws-iam-role
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@serverless/aws-iam-role) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
aws-iam-role
Easily provision AWS IAM roles using Serverless Components.
1. Install
$ npm install -g @serverless/components2. Create
Just create a serverless.yml file
$ touch serverless.yml
$ touch .env # your development AWS api keys
$ touch .env.prod # your production AWS api keysthe .env files are not required if you have the aws keys set globally and you want to use a single stage, but they should look like this.
AWS_ACCESS_KEY_ID=XXX
AWS_SECRET_ACCESS_KEY=XXX3. Configure
# serverless.yml
name: my-app
myRole:
component: "@serverless/aws-iam-role"
inputs:
name: my-role
service: lambda.amazonaws.com
policy:
arn: arn:aws:iam::aws:policy/AdministratorAccess
regoin: us-east-14. Deploy
role (master)$ components
myRole › outputs:
name: 'my-role'
arn: 'arn:aws:iam::552760238299:role/my-test-role'
service: 'lambda.amazonaws.com'
policy:
arn: 'arn:aws:iam::aws:policy/AdministratorAccess'
37s › dev › my-app › done
role (master)$
New to Components?
Checkout the Serverless Components repo for more information.