Serverless Attach Managed Policy

homepage icon https://github.com/Nordstrom/serverless-attach-managed-policy
Follow @Nordstrom

Tracked

NPM Downloads Last Month
10075
Issues
0
Stars
0
Forks
0
Watchers
0
Watch Star Fork Issue Download License NPM Build Status Coverage Status Contributors

Repo README Contents:

serverless-attach-managed-policy

serverless

A serverless plugin to automatically attach an AWS Managed IAM Policy (or Policies) to all IAM Roles created by the Service.

Install

npm install --save-dev serverless-attach-managed-policy

Add the plugin to your serverless.yml file:

plugins:
  - serverless-attach-managed-policy

Configuration

For a single Policy.

provider:
  name: aws
  managedPolicyArns: 'arn:aws:iam::789763425617:policy/someteam/MyManagedPolicy-3QUG1777293EJ'

For a multiple Policies.

provider:
  name: aws
  managedPolicyArns:
    - 'arn:aws:iam::789763425617:policy/someteam/MyManagedPolicy-3QUG1777293EJ'
    - 'arn:aws:iam::789763425617:policy/someteam/AnotherManagedPolicy-F6NZ1321293EJ'