Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

serverless-attach-managed-policy

Nordstrom5.3kApache-2.00.0.7

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

serverless, plugin, AWS, managed, policy, roles

readme

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'