We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IAM evaluation relies on aws iam simulate-principal-policy but I have noticed that this can give surprising/false results.
aws iam simulate-principal-policy
For instance I'm using a role with AdministratorAccess managed policy attached to it, and the simulator returns implicitDeny!!
> aws iam simulate-principal-policy --policy-source-arn arn:aws:iam::<redacted>:role/<redacted> --action-names ecs:ExecuteCommand --resource-arns arn:aws:ecs:eu-west-3:<redacted>:task/<redacted> --profile <redacted> { "EvaluationResults": [ { "EvalActionName": "ecs:ExecuteCommand", "EvalResourceName": "arn:aws:ecs:eu-west-3:<redacted>:task/<redacted>", "EvalDecision": "implicitDeny", "MatchedStatements": [], "MissingContextValues": [], "OrganizationsDecisionDetail": { "AllowedByOrganizations": false } } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
IAM evaluation relies on
aws iam simulate-principal-policy
but I have noticed that this can give surprising/false results.For instance I'm using a role with AdministratorAccess managed policy attached to it, and the simulator returns implicitDeny!!
The text was updated successfully, but these errors were encountered: