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?