Skip to main content

lacework-global-46

1.17 Create a support role to manage incidents with AWS Support (Automated)

Profile Applicability

• Level 1

Description

AWS provides a support center for incident notification and response, as well as technical support and customer services. Create an Identity and Access Management (IAM) Role to allow authorized users to manage incidents with AWS Support.

Rationale

By implementing least privilege for access control, an IAM Role will require an appropriate IAM Policy to allow Support Center Access in order to manage Incidents with AWS Support.

Impact

All AWS Support plans include an unlimited number of account and billing support cases, with no long-term contracts. Support billing calculations are performed on a per-account basis for all plans. Enterprise Support plan customers have the option to include multiple enabled accounts in an aggregated monthly billing calculation. Monthly charges for the Business and Enterprise support plans are based on each month's AWS usage charges, subject to a monthly minimum, billed in advance.

Audit

From Command Line

  1. List IAM policies, filter for the 'AWSSupportAccess' managed policy, and note the "Arn" element value:
aws iam list-policies --query "Policies[?PolicyName == 'AWSSupportAccess']"
  1. Check if the 'AWSSupportAccess' policy is attached to any role:
aws iam list-entities-for-policy --policy-arn arn:aws:iam::aws:policy/AWSSupportAccess
  1. In Output, Ensure PolicyRoles does not return empty. 'Example: Example: PolicyRoles: [ ]'

If it returns empty refer to the remediation below.

Remediation

From Command Line

  1. Create an IAM role for managing incidents with AWS:
    • Create a trust relationship policy document that allows <iam_user> to manage AWS incidents, and save it locally as /tmp/TrustPolicy.json:
 {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "<iam_user>"
},
"Action": "sts:AssumeRole"
}
]
}
  1. Create the IAM role using the preceding trust policy:
aws iam create-role --role-name <aws_support_iam_role> --assume-role-policy-document file:///tmp/TrustPolicy.json
  1. Attach 'AWSSupportAccess' managed policy to the created IAM role:
aws iam attach-role-policy --policy-arn arn:aws:iam::aws:policy/AWSSupportAccess --role-name <aws_support_iam_role>
note

You can utilize Lacework's remediation template to resolve violations of this policy. See Remediation Templates.

References

https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
https://aws.amazon.com/premiumsupport/pricing/
https://docs.aws.amazon.com/cli/latest/reference/iam/list-policies.html
https://docs.aws.amazon.com/cli/latest/reference/iam/attach-role-policy.html
https://docs.aws.amazon.com/cli/latest/reference/iam/list-entities-for-policy.html

Additional Information

AWSSupportAccess policy is a global AWS resource. It has same Amazon Resource Name (ARN) as arn:aws:iam::aws:policy/AWSSupportAccess for every account.