1 Answer
- Newest
- Most votes
- Most comments
2
Hello.
I thought, how about setting ReadOnlyAccess and using a Permissions boundary to allow only the necessary services?
For example, if you set ReadOnlyAccess in the IAM policy and set the following Permissions boundary, you can only allow reading to EC2.
https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "test",
"Effect": "Allow",
"Action": "ec2:*",
"Resource": "*"
}
]
}
Relevant content
- asked 2 years ago
- asked 2 years ago
- asked 2 months ago
- How do I provide cluster access to other IAM users and roles after I create a cluster in Amazon EKS?AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 6 months ago