2015-Middleware-Keynote / demo-ansible

Apache License 2.0
18 stars 24 forks source link

"Overhaul" - Will need to update readme with new CloudFormation stack / IAM policy requirements #111

Closed kenthua closed 8 years ago

kenthua commented 8 years ago

Need to update the readme with new policy requirements.

This custom inline policy will work, but is very broad.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Stmt1459269951000",
            "Effect": "Allow",
            "Action": [
                "cloudformation:*",
                "iam:*"
            ],
            "Resource": [
                "*"
            ]
        }
    ]
}
alberttwong commented 8 years ago

I had the same problem. Needed 2 AWS policies in addition to what Kent wrote.

kenthua commented 8 years ago

Testing additional policies right now, will do a PR when it deploys successfully.

thoraxe commented 8 years ago

Potentially fixed by #128 once it merges.