Skip to content

Latest commit

 

History

History
103 lines (74 loc) · 2.58 KB

account.rst

File metadata and controls

103 lines (74 loc) · 2.58 KB

Account

Background

StreamAlert can ingest, analyze and alert on data from a wide variety of environments, applications, and systems.

However, the StreamAlert application itself and its supporting services must be deployed in an AWS account of your choosing, either new or existing. Deployment is also fully automated via Terraform.

If you want to try out StreamAlert in a test environment, you can use an AWS Free Tier account to get some hands-on experience.

User Account

To deploy StreamAlert, you need to create an AWS user for administration.

First, create a policy with sufficient permissions to attach to a user:

  • Go to: Services => IAM => Policies
  • Click: Create policy
  • Select: Create your Own Policy
  • Name the policy 'streamalert', and paste the JSON below in the Policy Document:
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "athena:*",
        "cloudtrail:*",
        "cloudwatch:*",
        "ec2:*FlowLogs",
        "events:*",
        "firehose:*",
        "iam:*",
        "kinesis:*",
        "kms:*",
        "lambda:*",
        "logs:*",
        "s3:*",
        "sns:*",
        "sqs:*"
      ],
      "Resource": "*"
    }
  ]
}
  • Click: Create Policy

Next, create the IAM user account:

  • Go to: Services => IAM => Users
  • Click: Add user
  • Username: streamalert
  • Access type: Programmatic access
  • Click: Next: Permissions
  • Select: Attach existing policies directly
  • Attach the previously created streamalert policy
  • Click: 'Next: Review', and then 'Create user'

Copy the Access Key ID and Secret Access Key and create an AWS profile:

$ aws configure --profile streamalert
AWS Access Key ID [None]: ACCESS KEY HERE
AWS Secret Access Key [None]: SECRET ACCESS KEY HERE
Default region name [None]: REGION GOES HERE
Default output format [None]: json

Finally, export the following environment variable to activate the profile:

$ export AWS_PROFILE=streamalert

Configuration

account_id

Add your AWS Account ID to the StreamAlert config:

$ python manage.py configure aws_account_id <account_number>

Find your AWS Account ID by following these instructions.

prefix

Add your company or organization name to the StreamAlert config:

$ python manage.py configure prefix <company/org name>