Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Locked thread
fluppet
Feb 10, 2009
Dropping several grand a day on infrastructure is fun

Adbot
ADBOT LOVES YOU

fluppet
Feb 10, 2009
Any one off to the AWS London summit next month?

fluppet
Feb 10, 2009
You can allow them to create users and attach those users to an existing group but not let them edit/create any permission themselves

fluppet
Feb 10, 2009
i think your making this a little harder than it needs to be

code:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Stmt0000000000001",
            "Effect": "Allow",
            "Action": [
                "iam:CreateAccessKey",
                "iam:CreateUser",
                "iam:ListUsers",
                "iam:ListGroupsForUser"
            ],
            "Resource": [
                "arn:aws:iam::accountnum:user/bar-*"
            ]
        },
        {
            "Sid": "Stmt0000000000001",
            "Effect": "Allow",
            "Action": [
                "iam:GetGroup",
                "iam:ListGroups"
            ],
            "Resource": [
                "arn:aws:iam::accountnum:group/foo-*"
            ]
        },
        {
            "Sid": "Stmt0000000000001",
            "Effect": "Allow",
            "Action": [
                "iam:AddUserToGroup"
            ],
            "Resource": [
                "arn:aws:iam::accountnum:group/foo-*"
            ]
        }
    ]
}
allows you to create iam accounts that have to have their name prefixed with bar- and add them to groups that start foo-

fluppet
Feb 10, 2009
You'll need to use a s3 endpoint for this or lock it down to the public in addresses alternatively you could set up a set of app keys with get/put permission and lock it down that way

fluppet
Feb 10, 2009
I've been given a set of AWS keys from a client but they don't seem to have the permissions i need to do what I'm supposed to be able to do, is there a quick and easy way to list the associated IAM permissions with a valid key?

Adbot
ADBOT LOVES YOU

fluppet
Feb 10, 2009
I'd love to give spinnaker a shot but I'm currently at a place that's stuck with teamcity and haven't been able to get the pair to play nice

If you do get it working can we get a trip report?

  • Locked thread