Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document IAM permissions needed #55

Open
dankantor opened this issue Mar 25, 2016 · 1 comment
Open

Document IAM permissions needed #55

dankantor opened this issue Mar 25, 2016 · 1 comment

Comments

@dankantor
Copy link
Contributor

The IAM user executing this will need certain permissions. We should list these in the docs somewhere.

@dankantor
Copy link
Contributor Author

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllowAccessToIAM",
            "Effect": "Allow",
            "Action": [
                "iam:GetUser"
            ],
            "Resource": [
                "*"
            ]
        },
        {
            "Sid": "AllowAccessToAPIGateway",
            "Effect": "Allow",
            "Action": [
                "apigateway:GET",
                "apigateway:POST"
            ],
            "Resource": [
                "*"
            ]
        },
        {
            "Sid": "AllowAccessToLambda",
            "Effect": "Allow",
            "Action": [
                "lambda:GetFunction",
                "lambda:CreateFunction",
                "lambda:UpdateFunctionCode",
                "lambda:UpdateAlias"
            ],
            "Resource": [
                "*"
            ]
        }
    ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant