Resource policy vs IAM policy

0

If a user is blocked from accessing a specific resource (KMS key) by an IAM policy Is it possible to use the KMS key's resource policy to bypass the IAM policy? 45asdf67

asked 10 months ago372 views
2 Answers
0
Accepted Answer

https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html

"Permissions are granted directly to the user. Other policy types do not affect the decision."

If the Resource Policy of an object allows access, the IAM policy that is applied to the user will be ignored.

answered 10 months ago
0

if an IAM policy denies a user from accessing a specific KMS key, that denial cannot be overridden by the resource policy. In AWS, an explicit deny always takes precedence over any allow. If there is a policy that explicitly denies access to a resource, even if another policy allows access, the deny will win.

It's important to note that the evaluation process for deciding whether a request is allowed or denied is not a simple first-match-wins model. All permissions that apply to a request are evaluated together. If any permission results in a 'deny', the request is denied even if another policy grants access. This is the concept of "explicit deny" in AWS.

So, no, you can't bypass an IAM policy's denial with a resource policy's allow. The explicit deny in the IAM policy would still block access.

profile picture
EXPERT
answered 10 months ago
EXPERT
reviewed 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions