Skip to content

Instantly share code, notes, and snippets.

@malomarrec
Last active February 14, 2020 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malomarrec/4739098584b38a76d67e2c4edd2aa250 to your computer and use it in GitHub Desktop.
Save malomarrec/4739098584b38a76d67e2c4edd2aa250 to your computer and use it in GitHub Desktop.
A basic set of premissions Cloudskiff needs to manage your EKS clusters
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:*",
"eks:*",
"autoscaling:*"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"iam:*"
],
"Resource": [
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment