AWS IAM Policy for ECR and ECS

This JSON snippet represents an AWS IAM policy allowing all actions on Amazon Elastic Container Registry (ECR) and Amazon Elastic Container Service (ECS). It's useful for configuring permissions in Amazon Web Services for managing container resources.
 avatar
user_0659028
json
7 months ago
238 B
7
Indexable
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ecr:*",
                "ecs:*"
            ],
            "Resource": "*"
        }
    ]
}
Editor is loading...
Leave a Comment