Created
February 11, 2018 21:37
-
-
Save downspot/d1cbdc20b7b7fc463067af90945965e0 to your computer and use it in GitHub Desktop.
policy for ECS access
This file contains 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": [ | |
{ | |
"Sid": "ECSAccess", | |
"Effect": "Allow", | |
"Action": [ | |
"ecs:Poll", | |
"ecs:StartTask", | |
"ecs:StopTask", | |
"ecs:DiscoverPollEndpoint", | |
"ecs:StartTelemetrySession", | |
"ecs:RegisterContainerInstance", | |
"ecs:DeregisterContainerInstance", | |
"ecs:DescribeContainerInstances", | |
"ecs:Submit*" | |
], | |
"Resource": "*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment