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.
user_0659028 avatar
user_0659028
json
12/07/2024 3:39 AM
320 B
30
Indexable
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ecr:*",
                "ecs:*"
            ],
            "Resource": "*"
        }
    ]
}
Editor is loading...
Leave a Comment