Overview
IAM users are granted access to services, functions, and data through IAM policies. There are multiple ways to define policies for an user, such as:
- Add the user to an IAM group that has an attached policy.
- Attach an inline policy directly to an user.
- Attach a managed policy directly to an user.
Only the first implementation is recommended.
Assigning IAM policy only through groups simplifies permissions management to a single, flexible layer consistent with organizational functional roles. By simplifying permissions management, the likelihood of excessive permissions is reduced.
Remediation guidance
From Console
Perform the following to create an IAM group and assign a list of policies to it:
- Sign into the AWS console and open the IAM Dashboard.
- In the left navigation pane, click User groups and then click Create group.
- In the
User group namebox, type the name of the group. - In the list of policies, select the
check boxfor each policy that you want to apply to all members of the group (You can attach up to 10 policies to this user group). - Click Create group. Group is created with the list of permissions.
Perform the following to add a user to a given group:
- Sign into the AWS console and open the IAM Dashboard.
- In the left navigation pane, click User groups.
- Select the
Group nameto add an user to. - Click
Add usersto group. - Select the users to be added to the group.
- Click Add users. Users are added to the group.
Perform the following to remove a direct association between an user and the policy:
- Sign into the AWS console and open the IAM Dashboard.
- In the left navigation pane, click on Users.
- For each user:
- Select the user, it will take you to
Permissionstab. - Expand Permissions policies.
- Click
Xfor each policy and then click Remove (depending on policy type).
- Select the user, it will take you to
Service-wide remediation
Recommended when many resources are affected: fix the platform baseline first so new resources inherit the secure setting, then remediate the existing flagged resources in batches.
AWS
Use AWS Organizations guardrails, AWS Config rules or conformance packs where they fit, approved account baselines, and IaC modules so new resources inherit the secure setting.
Operational rollout
- Fix the baseline first at the account, subscription, project, cluster, or tenant scope that owns this control.
- Remediate the currently affected resources in batches, starting with internet-exposed and production assets.
- Re-scan and track approved exceptions with an owner and expiry date.
Query logic
These are the stored checks tied to this control.
IAM Users receive permissions only through Groups
Connectors
Covered asset types
Expected check: eq []
iamUsers(where: { cloudProvider: "aws", iamPolicies_NOT: null }) {...AssetFragment}
AWS