5

I've read the AWS IAM example policies but don't see an example for allowing a group to do everything.

I'm trying:

{
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "*",
      "Resource": "*"
    }
  ]
}

But it's not working.

Any ideas?

greggles
  • 181
  • 1
  • 12
  • The policy generator spits out an `Sid` parameter, no idea if it's required. I believe some highly privileged actions have to be specifically called out as they're not included in *. – ceejayoz Jul 02 '13 at 20:44
  • 1
    You need the version tag ("Version": "2012-10-17") as well. – Guy Jul 03 '13 at 19:20
  • @Guy - that works - I needed it at the same level as the Statement. Can you add that as an answer so I can accept it? – greggles Jul 05 '13 at 22:26

1 Answers1

3

You need the version tag ("Version": "2012-10-17") as well like this:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "*",
      "Resource": "*"
    }
  ]
}
greggles
  • 181
  • 1
  • 12