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

Graffiti Monkey IAm Policy #34

Open
Chris-Pr opened this issue Sep 28, 2016 · 3 comments
Open

Graffiti Monkey IAm Policy #34

Chris-Pr opened this issue Sep 28, 2016 · 3 comments

Comments

@Chris-Pr
Copy link

Does anyone have a successful IAM policy for Graffiti Monkey they can share?

I've tried a few but I am clearing missing something as still getting 404 from boto.

@paulwakeford
Copy link
Contributor

Can you share the full command you are using and the error?

@dpalomin
Copy link

dpalomin commented Feb 21, 2017

I'm using the policy below.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ec2:CreateTags",
                "ec2:DeleteTags",
                "ec2:Describe*",
                "ec2:ModifySnapshotAttribute",
                "ec2:ModifyVolumeAttribute",
                "ec2:ResetSnapshotAttribute"
            ],
            "Resource": "*"
        }
    ]
}

@ivica-k
Copy link

ivica-k commented Nov 19, 2018

This is the policy i'm using, and it's heavily based on what you shared here.

{
	"Version": "2012-10-17",
	"Statement": [{
		"Sid": "SYS1509",
		"Effect": "Allow",
		"Action": [
			"elasticbeanstalk:AddTags",
			"elasticbeanstalk:RemoveTags",
			"ec2:CreateTags",
			"ec2:Describe*",
			"ec2:ModifySnapshotAttribute",
			"ec2:ModifyVolumeAttribute",
			"ec2:ResetSnapshotAttribute"
		],
		"Resource": "*"
	}]
}

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

No branches or pull requests

4 participants