Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marcelobrake/d40f8324ebaf5624e69783d46529bc4f to your computer and use it in GitHub Desktop.
Save marcelobrake/d40f8324ebaf5624e69783d46529bc4f to your computer and use it in GitHub Desktop.
Minimum Permissions for AutoScalling on AWS with KOPS
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeAutoScalingInstances",
"autoscaling:DescribeLaunchConfigurations",
"autoscaling:SetDesiredCapacity",
"autoscaling:TerminateInstanceInAutoScalingGroup",
"autoscaling:DescribeTags"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment