Appearance
AWS VPC Flow Logs
Realm can ingest AWS VPC Flow Logs delivered to an S3 bucket via SQS event notifications. VPC Flow Logs capture information about IP traffic going to and from network interfaces in your VPC — ingesting these logs into Realm enables network visibility, threat detection, and investigation of lateral movement or exfiltration activity.
Realm supports two approaches for receiving notifications when new VPC Flow Log files land in S3:
- Option 1 — Via SQS (S3 → SQS): Configure S3 to send event notifications directly to a new SQS queue.
- Option 2 — Via SNS & SQS (S3 → SNS → SQS): Subscribe a new SQS queue to an existing SNS topic that already receives S3 events from the VPC Flow Logs bucket.
Both approaches share the same IAM policy and IAM user setup. Follow the relevant section below based on your setup.
Prerequisites
VPC Flow Logs must be configured to deliver logs to an S3 bucket. If you haven't done this yet, follow the steps below. If your VPC is already writing flow logs to an S3 bucket, skip ahead to the relevant option.
Enable VPC Flow Logs
Skip this step if VPC Flow Logs are already delivering to an S3 bucket. Copy the bucket name and proceed to your chosen option.
Create the S3 bucket:
- Go to S3 > Buckets
- Click Create bucket
- Enter the bucket name:
Bucket name:
rlm-vpc-flow-logs-<account_id>
- Select the same AWS Region as your VPC
- Click Create bucket
Enable flow logs on the VPC:
- Go to VPC > Your VPCs and select the VPC to monitor
- Go to the Flow logs tab and click Create flow log
- Fill out the details:
Filter: Accept, Reject, or All (we recommend All)
Maximum aggregation interval: 1 minute or 10 minutes
Destination: Send to an Amazon S3 bucket
S3 bucket ARN:arn:aws:s3:::rlm-vpc-flow-logs-<account_id>
Log record format: AWS default format or Custom format
- Click Create flow log
Note: Flow logs can also be enabled at the subnet or network interface level. The S3 and SQS setup is identical regardless of the scope.
Copy the S3 bucket name — you will need it in the steps below.
Option 1: Via SQS (S3 → SQS)
Use this approach if your VPC Flow Logs S3 bucket does not already have an SNS topic configured for event notifications.
Step 1: Create SQS Queue
- Go to SQS > Queues
- Click Create Queue
- Enter the queue name:
Name:
rlm-vpc-flowlogs-notifications
- Click Create Queue
- Copy the ARN of the queue — you will need it in the steps below
Step 2: Create IAM Policy
- Go to IAM > Policies
- Click Create Policy
- Click JSON and replace the contents with the following, substituting
<s3_bucket_arn>with the ARN of your VPC Flow Logs S3 bucket and<sqs_queue_arn>with the SQS queue ARN from Step 1
json
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "s3ReadVpcFlowLogsObjects",
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"<s3_bucket_arn>",
"<s3_bucket_arn>/*"
]
},
{
"Sid": "sqsVpcFlowLogsNotifications",
"Effect": "Allow",
"Action": [
"sqs:ReceiveMessage",
"sqs:DeleteMessage"
],
"Resource": [
"<sqs_queue_arn>"
]
}
]
}- Click Next
- Enter the policy details:
Name:
rlm-vpc-flowlogs-read
Description: Grant read access to VPC Flow Logs S3 bucket and permission to receive notifications from the SQS queue.
- Click Create Policy
Step 3: Create IAM User
- Go to IAM > Users and click Create User
- Enter the username:
Name:
rlm-vpc-flowlogs-user
- Click Next
- Select Attach policies directly
- Search for and select the
rlm-vpc-flowlogs-readpolicy created in Step 2 - Click Next, then Create user
- Open the user that was just created and copy its ARN — you will need it in Step 4
- Go to Security credentials and click Create access key
- Select Third-party service, check the confirmation checkbox, then click Next
- Enter a description:
Credentials for Realm.Security to read VPC Flow Logs from S3
- Click Create access key
- Copy and save the Access Key and Secret access key — you will need these when configuring the input feed in Realm
Step 4: Update SQS Access Policy
The SQS queue policy must allow S3 to publish notifications to the queue and allow the IAM user to read from it.
- Go to SQS > Queues
- Select the
rlm-vpc-flowlogs-notificationsqueue - Go to Queue policies and click Edit
- Replace the policy JSON with the following, substituting
<sqs_queue_arn>with the SQS queue ARN and<iam_user_arn>with the IAM user ARN from Step 3
json
{
"Version": "2012-10-17",
"Id": "__default_policy_ID",
"Statement": [
{
"Sid": "AllowS3Publish",
"Effect": "Allow",
"Principal": {
"Service": "s3.amazonaws.com"
},
"Action": "sqs:SendMessage",
"Resource": "<sqs_queue_arn>"
},
{
"Sid": "AllowRealmUser",
"Effect": "Allow",
"Principal": {
"AWS": "<iam_user_arn>"
},
"Action": [
"sqs:ChangeMessageVisibility",
"sqs:DeleteMessage",
"sqs:ReceiveMessage"
],
"Resource": "<sqs_queue_arn>"
}
]
}- Click Save
Step 5: Configure S3 Event Notifications
- Go to S3 > Buckets and select your VPC Flow Logs bucket
- Go to Properties > Event notifications
- Click Create event notification
- Fill out the details:
Event name:
RlmVpcFlowLogsCreateEvents
Check All object create events
Destination: SQS Queue
Selectrlm-vpc-flowlogs-notificationsfrom the dropdown
- Click Save changes
Step 6: Configure the Input Feed in Realm
- In Realm, go to Sources
- Click Add Source and select AWS VPC Flow Logs
- Fill in the connection details:
Name:
AWS VPC Flow Logs
SQS Queue URL: The URL of therlm-vpc-flowlogs-notificationsqueue
Access Key: The access key from Step 3
Secret Access Key: The secret access key from Step 3
- Click Save
Realm will begin polling the SQS queue and fetching VPC Flow Log files from S3 as they arrive.
Option 2: Via SNS → SQS
Use this approach to subscribe a new SQS queue to an SNS topic that already receives S3 ObjectCreate notifications from the VPC Flow Logs bucket.
Step 1: Create and Configure SNS Topic
Skip this step if you already have an SNS topic configured to receive S3 ObjectCreate notifications from your VPC Flow Logs bucket. Copy its ARN and proceed to Step 2.
Create the SNS topic:
- Go to SNS > Topics
- Click Create topic
- Select Standard as the type
- Enter the topic name:
Name:
rlm-vpc-flowlogs-notifications-topic
- Click Create topic
- Copy the ARN of the topic — you will need it in the steps below
Update the SNS topic access policy:
The SNS topic policy must allow S3 to publish to it.
- On the topic details page, go to Access policy and click Edit
- Replace the policy JSON with the following, substituting
<sns_topic_arn>with the SNS topic ARN and<s3_bucket_arn>with the ARN of your VPC Flow Logs S3 bucket
json
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowS3Publish",
"Effect": "Allow",
"Principal": {
"Service": "s3.amazonaws.com"
},
"Action": "sns:Publish",
"Resource": "<sns_topic_arn>",
"Condition": {
"ArnLike": {
"aws:SourceArn": "<s3_bucket_arn>"
}
}
}
]
}- Click Save changes
Configure S3 to send ObjectCreate notifications to the SNS topic:
- Go to S3 > Buckets and select your VPC Flow Logs bucket
- Go to Properties > Event notifications
- Click Create event notification
- Fill out the details:
Event name:
RlmVpcFlowLogsToSnsEvents
Check All object create events
Destination: SNS Topic
Selectrlm-vpc-flowlogs-notifications-topicfrom the dropdown
- Click Save changes
Step 2: Create SQS Queue
Follow the same steps as Step 1 in Option 1 above to create a queue named rlm-vpc-flowlogs-notifications and copy its ARN.
Step 3: Create IAM Policy
Follow the same steps as Step 2 in Option 1 above to create the rlm-vpc-flowlogs-read policy.
Step 4: Create IAM User
Follow the same steps as Step 3 in Option 1 above. Save the IAM user ARN, Access Key, and Secret access key.
Step 5: Update SQS Access Policy
The SQS queue policy must allow the SNS topic to publish messages to the queue and allow the IAM user to read from it.
- Go to SQS > Queues
- Select the
rlm-vpc-flowlogs-notificationsqueue - Go to Queue policies and click Edit
- Replace the policy JSON with the following, substituting
<sqs_queue_arn>with the SQS queue ARN,<sns_topic_arn>with the SNS topic ARN from Step 1, and<iam_user_arn>with the IAM user ARN from Step 4
json
{
"Version": "2012-10-17",
"Id": "__default_policy_ID",
"Statement": [
{
"Sid": "AllowSNSPublish",
"Effect": "Allow",
"Principal": {
"Service": "sns.amazonaws.com"
},
"Action": "sqs:SendMessage",
"Resource": "<sqs_queue_arn>",
"Condition": {
"ArnEquals": {
"aws:SourceArn": "<sns_topic_arn>"
}
}
},
{
"Sid": "AllowRealmUser",
"Effect": "Allow",
"Principal": {
"AWS": "<iam_user_arn>"
},
"Action": [
"sqs:ChangeMessageVisibility",
"sqs:DeleteMessage",
"sqs:ReceiveMessage"
],
"Resource": "<sqs_queue_arn>"
}
]
}- Click Save
Step 6: Subscribe SQS Queue to SNS Topic
- Go to SNS > Topics
- Select the SNS topic from Step 1
- Click Create subscription
- Fill out the details:
Protocol: Amazon SQS
Endpoint:<sqs_queue_arn>
- Click Create subscription
The subscription will be automatically confirmed since both resources are in the same AWS account.
Step 7: Configure the Input Feed in Realm
Follow the same steps as Step 6 in Option 1 above, using the Access Key and Secret access key from Step 4.