PCCSE · Question #238
What factor is not used in calculating the net effective permissions for a resource in AWS?
The correct answer is A. IPTables firewall rule. AWS calculates net effective permissions using IAM policies, SCPs, and permission boundaries - not host-level firewall tools like IPTables.
Question
What factor is not used in calculating the net effective permissions for a resource in AWS?
Options
- AIPTables firewall rule
- BAWS IAM policy
- CAWS service control policies (SCPs)
- DPermission boundaries
How the community answered
(49 responses)- A94% (46)
- B4% (2)
- D2% (1)
Why each option
AWS calculates net effective permissions using IAM policies, SCPs, and permission boundaries - not host-level firewall tools like IPTables.
IPTables is a Linux kernel-level packet filtering tool that operates at the OS layer, completely outside of AWS's IAM permission evaluation logic. AWS net effective permissions are determined by evaluating IAM identity policies, resource policies, SCPs, permission boundaries, and session policies - none of which involve host-based firewalls. IPTables has no role in AWS authorization decisions.
AWS IAM policies are a direct input into the effective permissions calculation, evaluated against identity-based and resource-based policies.
SCPs are organization-level guardrails that set the maximum permissions available to accounts and are explicitly part of the effective permissions evaluation.
Permission boundaries act as a ceiling on what permissions an IAM entity can exercise and are a recognized factor in the effective permissions model.
Concept tested: AWS IAM effective permissions calculation factors
Source: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html
Topics
Community Discussion
No community discussion yet for this question.