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

已提问 1 年前391 查看次数
2 回答
0
已接受的回答

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.

已回答 1 年前
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
专家
已回答 1 年前
专家
已审核 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则