Skip to content

Instantly share code, notes, and snippets.

@przygode
Created September 21, 2012 04:33
Show Gist options
  • Select an option

  • Save przygode/3759720 to your computer and use it in GitHub Desktop.

Select an option

Save przygode/3759720 to your computer and use it in GitHub Desktop.
auto-scaling-resource-iam-user
{
"ChefClientUser": {
"Type": "AWS::IAM::User",
"Properties": {
"Path": "/",
"Policies": [
{
"PolicyName": "root",
"PolicyDocument": {
"Statement": [
{
"Effect": "Allow",
"Action": [
"cloudformation:DescribeStackResource",
"s3:Get"
],
"Resource": "*"
}
]
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment