Ensure a support role has been created to manage incidents with AWS Support
Description
AWS provides a Support Center that can be used for incident notification and response, as well as technical support and customer service. Create an IAM role with the appropriate policy assigned to allow authorized users to manage incidents with AWS Support.
Rationale
Following the principle of least privilege, an IAM role should be used with a scoped policy to allow access to AWS Support. This ensures only authorized users can manage support cases without requiring broad administrative access.
Impact
Without a dedicated support role, access to AWS Support may require overly permissive roles, increasing the risk of excessive access and reducing separation of duties.
Audit Procedure
Using AWS Console
- Sign in to the AWS Management Console and open the IAM console at https://console.aws.amazon.com/iam
- In the left navigation pane, under
Access management, selectPolicies - In the policy search field, enter
AWSSupportAccess - Select the policy
- Click the
Entities attachedtab - Ensure at least one
IAM Roleis attached
Using AWS CLI
- Identify the AWS managed support policy:
aws iam list-policies --query "Policies[?PolicyName=='AWSSupportAccess'].Arn" --output text
- Check if it is attached to any roles:
aws iam list-entities-for-policy --policy-arn arn:aws:iam::aws:policy/AWSSupportAccess
- Ensure that at least one role is listed under
PolicyRoles
Expected Result
At least one IAM role should be attached to the AWSSupportAccess policy. The policy ARN is arn:aws:iam::aws:policy/AWSSupportAccess.
Remediation
Using AWS Console
- Sign in to the AWS Management Console and open the IAM console
- Navigate to
Roles - Click
Create role - Configure the trusted entity (e.g., your AWS account or identity provider)
- Attach the
AWSSupportAccesspolicy - Complete role creation
- Assign the role to appropriate users or groups
Using AWS CLI
- Create a trust policy (example):
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::<account-id>:root"
},
"Action": "sts:AssumeRole"
}
]
}
- Create the role:
aws iam create-role --role-name <role-name> --assume-role-policy-document file://trust-policy.json
- Attach the AWS Support policy:
aws iam attach-role-policy --policy-arn arn:aws:iam::aws:policy/AWSSupportAccess --role-name <role-name>
Default Value
By default, AWS does not create a dedicated support role. IAM users and roles with sufficient permissions (e.g., AdministratorAccess) can access the Support Center unless a specific role with the AWSSupportAccess policy is created.
References
- https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
- https://aws.amazon.com/premiumsupport/pricing/
- https://awscli.amazonaws.com/v2/documentation/api/latest/reference/iam/list-policies.html
- https://awscli.amazonaws.com/v2/documentation/api/latest/reference/iam/attach-role-policy.html
- https://awscli.amazonaws.com/v2/documentation/api/latest/reference/iam/list-entities-for-policy.html
Additional Information
- The
AWSSupportAccesspolicy is a global AWS managed policy with ARN:arn:aws:iam::aws:policy/AWSSupportAccess - Avoid granting support access through broad policies like
AdministratorAccess - Assign the support role only to users who require it to maintain separation of duties
CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 17.1 Designate Personnel to Manage Incident Handling - Designate one key person, and at least one backup, who will manage the enterprise's incident handling process. Management personnel are responsible for the coordination and documentation of incident response and recovery efforts and can consist of employees internal to the enterprise, third-party vendors, or a hybrid approach. If using a third-party vendor, designate at least one person internal to the enterprise to oversee any third-party work. Review annually, or when significant enterprise changes occur that could impact this Safeguard. | x | x | x |
| v7 | 14.1 Segment the Network Based on Sensitivity - Segment the network based on the label or classification level of the information stored on the servers, locate all sensitive information on separated Virtual Local Area Networks (VLANs). | x | x |
Profile
Level 1 | Automated