Get started with CSPM for AWSedit

Overviewedit

This page explains how to get started monitoring the security posture of your cloud assets using the Cloud Security Posture Management (CSPM) feature.

Set up CSPM for AWSedit

You can set up CSPM for AWS either by enroling a single cloud account, or by enroling an organization containing multiple accounts. Either way, first you will add the CSPM integration, then enable cloud account access.

Add the CSPM integrationedit

  1. From the Elastic Security Get started page, click Add integrations.
  2. Search for CSPM, then click on the result.
  3. Click Add Cloud Security Posture Management (CSPM).
  4. Select AWS, then either AWS Organization to onboard multiple accounts, or Single Account to onboard an individual account.
  5. Give your integration a name that matches the purpose or team of the AWS account/organization you want to monitor, for example, dev-aws-account.

Set up cloud account accessedit

The CSPM integration requires access to AWS’s built-in SecurityAudit IAM policy in order to discover and evaluate resources in your cloud account. There are several ways to provide access.

For most use cases, the simplest option is to use AWS CloudFormation to automatically provision the necessary resources and permissions in your AWS account. This method, as well as several manual options, are described below.

CloudFormation (recommended)edit
  1. In the Add Cloud Security Posture Management (CSPM) integration menu, under Setup Access, select CloudFormation.
  2. In a new browser tab or window, log in as an admin to the AWS account or organization you want to onboard.
  3. Return to your Kibana tab. Click Save and continue at the bottom of the page.
  4. Review the information, then click Launch CloudFormation.
  5. A CloudFormation template appears in a new browser tab.
  6. For organization-level deployments only, you must enter the ID of the organizational unit where you want to deploy into the OrganizationalUnitIds field in the CloudFormation template. You can find it in the AWS console under AWS Organizations → AWS Accounts (it appears under the organization name).
  7. (Optional) Switch to the AWS region where you want to deploy using the controls in the upper right corner.
  8. Tick the checkbox under Capabilities to authorize the creation of necessary resources.

    The Add permissions screen in AWS
  9. At the bottom of the template, select Create stack.

When you return to Kibana, click View assets to review the data being collected by your new integration.

Manual authentication for organization-level onboardingedit

If you’re onboarding a single account instead of an organization, skip this section.

When using manual authentication to onboard at the organization level, you need to configure the necessary permissions using the AWS console for the organization where you want to deploy:

  • In the organization’s management account (root account), create an IAM role called cloudbeat-root (the name is important). The role needs several policies:

    • The following inline policy:
Click to expand policy
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "organizations:List*",
                "organizations:Describe*"
            ],
            "Resource": "*",
            "Effect": "Allow"
        },
        {
            "Action": [
                "sts:AssumeRole"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}
  • The following trust policy:
Click to expand policy
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::<Management Account ID>:root"
            },
            "Action": "sts:AssumeRole"
        },
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "ec2.amazonaws.com"
            },
            "Action": "sts:AssumeRole"
        }
    ]
}
  • The AWS-managed SecurityAudit policy.

You must replace <Management account ID> in the trust policy with your AWS account ID.

  • Next, for each account you want to scan in the organization, create an IAM role named cloudbeat-securityaudit with the following policies:

    • The AWS-managed SecurityAudit policy.
    • The following trust policy:
Click to expand policy
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::<Management Account ID>:role/cloudbeat-root"
            },
            "Action": "sts:AssumeRole"
        }
    ]
}

You must replace <Management account ID> in the trust policy with your AWS account ID.

After creating the necessary roles, authenticate using one of the manual authentication methods.

When deploying to an organization using any of the authentication methods below, you need to make sure that the credentials you provide grant permission to assume cloudbeat-root privileges.

Manual authentication methodsedit

Whichever method you use to authenticate, make sure AWS’s built-in SecurityAudit IAM policy is attached.

Option 1 - Default instance roleedit

If you are deploying to an AWS organization instead of an AWS account, you should already have created a new role, cloudbeat-root. Skip to step 2 "Attach your new IAM role to an EC2 instance", and attach this role. You can use either an existing or new EC2 instance.

Follow AWS’s IAM roles for Amazon EC2 documentation to create an IAM role using the IAM console, which automatically generates an instance profile.

  1. Create an IAM role:

    1. In AWS, go to your IAM dashboard. Click Roles, then Create role.
    2. On the Select trusted entity page, under Trusted entity type, select AWS service.
    3. Under Use case, select EC2. Click Next.

      The Select trusted entity screen in AWS
    4. On the Add permissions page, search for and select SecurityAudit. Click Next.

      The Add permissions screen in AWS
    5. On the Name, review, and create page, name your role, then click Create role.
  2. Attach your new IAM role to an EC2 instance:

    1. In AWS, select an EC2 instance.
    2. Select Actions > Security > Modify IAM role.

      The EC2 page in AWS
    3. On the Modify IAM role page, search for and select your new IAM role.
    4. Click Update IAM role.
    5. Return to Kibana and finish manual setup.

Make sure to deploy the CSPM integration to this EC2 instance. When completing setup in Kibana, in the Setup Access section, select Assume role and leave Role ARN empty. Click Save and continue.

Option 2 - Direct access keysedit

Access keys are long-term credentials for an IAM user or AWS account root user. To use access keys as credentials, you must provide the Access key ID and the Secret Access Key. After you provide credentials, finish manual setup.

For more details, refer to Access Keys and Secret Access Keys.

You must select Programmatic access when creating the IAM user.

Option 3 - Temporary security credentialsedit

You can configure temporary security credentials in AWS to last for a specified duration. They consist of an access key ID, a secret access key, and a security token, which is typically found using GetSessionToken.

Because temporary security credentials are short term, once they expire, you will need to generate new ones and manually update the integration’s configuration to continue collecting cloud posture data. Update the credentials before they expire to avoid data loss.

IAM users with multi-factor authentication (MFA) enabled need to submit an MFA code when calling GetSessionToken. For more details, refer to AWS’s Temporary Security Credentials documentation.

You can use the AWS CLI to generate temporary credentials. For example, you could use the following command if you have MFA enabled:

sts get-session-token --serial-number arn:aws:iam::1234:mfa/your-email@example.com --duration-seconds 129600 --token-code 123456

The output from this command includes the following fields, which you should provide when configuring the KSPM integration:

  • Access key ID: The first part of the access key.
  • Secret Access Key: The second part of the access key.
  • Session Token: The required token when using temporary security credentials.

After you provide credentials, finish manual setup.

Option 4 - Shared credentials fileedit

If you use different AWS credentials for different tools or applications, you can use profiles to define multiple access keys in the same configuration file. For more details, refer to AWS' Shared Credentials Files documentation.

Instead of providing the Access key ID and Secret Access Key to the integration, provide the information required to locate the access keys within the shared credentials file:

  • Credential Profile Name: The profile name in the shared credentials file.
  • Shared Credential File: The directory of the shared credentials file.

If you don’t provide values for all configuration fields, the integration will use these defaults:

  • If Access key ID, Secret Access Key, and ARN Role are not provided, then the integration will check for Credential Profile Name.
  • If there is no Credential Profile Name, the default profile will be used.
  • If Shared Credential File is empty, the default directory will be used.
  • For Linux or Unix, the shared credentials file is located at ~/.aws/credentials.

After providing credentials, finish manual setup.

Option 5 - IAM role Amazon Resource Name (ARN)edit

An IAM role Amazon Resource Name (ARN) is an IAM identity that you can create in your AWS account. You define the role’s permissions. Roles do not have standard long-term credentials such as passwords or access keys. Instead, when you assume a role, it provides temporary security credentials for your session.

To use an IAM role ARN, select Assume role under Preferred manual method, enter the ARN, and continue to Finish manual setup.

Finish manual setupedit

Once you’ve provided AWS credentials, under Where to add this integration:

If you want to monitor an AWS account or organization where you have not yet deployed Elastic Agent:

  • Select New Hosts.
  • Name the Elastic Agent policy. Use a name that matches the purpose or team of the cloud account or accounts you want to monitor. For example, dev-aws-account.
  • Click Save and continue, then Add Elastic Agent to your hosts. The Add agent wizard appears and provides Elastic Agent binaries, which you can download and deploy to your AWS account.

If you want to monitor an AWS account or organization where you have already deployed Elastic Agent:

  • Select Existing hosts.
  • Select an agent policy that applies the AWS account you want to monitor.
  • Click Save and continue.