Created
September 24, 2019 21:16
-
-
Save oskapt/49eb4a40a6205cf1f57fcce741303827 to your computer and use it in GitHub Desktop.
IAM Instance Policy JSON for Rancher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"ec2:AttachVolume", | |
"ec2:CreateSnapshot", | |
"ec2:CreateTags", | |
"ec2:CreateVolume", | |
"ec2:DeleteSnapshot", | |
"ec2:DeleteTags", | |
"ec2:DeleteVolume", | |
"ec2:DescribeInstances", | |
"ec2:DescribeSnapshots", | |
"ec2:DescribeTags", | |
"ec2:DescribeVolumes", | |
"ec2:DetachVolume" | |
], | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"elasticloadbalancing:*" | |
], | |
"Resource": [ | |
"*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment