Skip to content

Instantly share code, notes, and snippets.

@livando
Last active September 12, 2017 17:42
Show Gist options
  • Save livando/00976d4dd4281c0e8aa4db814f369297 to your computer and use it in GitHub Desktop.
Save livando/00976d4dd4281c0e8aa4db814f369297 to your computer and use it in GitHub Desktop.
Serverless Credentialing on AWS

Serverless Credentialing

Step 1: Create Custom Policy

  • select policies
  • create policy
  • create your own policy
  • policy name: ServerlessCloudFormation, description: serverless policy, policy document:
  {
      "Version": "2012-10-17",
      "Statement": [
          {
              "Sid": "Stmt1449904348000",
              "Effect": "Allow",
              "Action": [
                  "cloudformation:DescribeStackResources",
                  "cloudformation:UpdateStack",
                  "cloudformation:CreateStack"
              ],
              "Resource": [
                  "*"
              ]
          }
      ]
  }

e. create policy

Step 2: Create Group

  • groups
  • create new group, 'Serverless', next
  • add the following, then click 'Next Step'
    1. ServerlessCloudFormation
    2. AWSLambdaFullAccess
    3. AWSCloudFormationReadOnlyAccess
    4. IAMFullAccess
    5. AmazonAPIGatewayAdministrator
  • create group
    Step 3: Add Users
  • groups
  • click 'Serverless'
  • add Users to group
  • livando, 'Add Users'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment