Overview
Asymptote can ingest customer-hosted event files from a private AWS S3 bucket or prefix. Grant Asymptote’s ingestion worker read-only access to the bucket that contains the event files. Do not make the bucket public. Do not grant write or delete permissions. At the end of setup, send Asymptote the full IAM role ARN for the role you create.Customer Steps
-
Send Asymptote the S3 location details.
Include:
- AWS account ID
- S3 bucket name
- AWS region
- Prefix/path for the event files, such as
s3://your-bucket/asymptote/events/ - File format, ideally JSONL or JSONEachRow
- Delivery cadence and approximate event volume
- Encryption type, either SSE-S3 or SSE-KMS
- KMS key ARN, only if SSE-KMS is enabled
-
Create a dedicated IAM role in AWS.
Sign in to the AWS account that owns the S3 bucket with an IAM user that can create and manage IAM roles. Open the IAM service console, then create a new role named something like
asymptote-s3-read. -
Configure the role trust policy.
Use the IAM ARN Asymptote gives you as the trusted principal. Replace
ASYMPTOTE_IAM_ARNwith that ARN.IAM role trust policy -
Attach a read-only S3 policy.
ReplaceRead-only S3 policy
YOUR_BUCKET_NAMEwith the name of the S3 bucket that contains the event files. -
Add KMS decrypt permission if needed.
If the bucket uses SSE-KMS, add this statement to the role policy:
The KMS key policy must also allow this IAM role to useSSE-KMS decrypt statement
kms:Decrypt. -
Send Asymptote the final onboarding details.
Send:
- IAM role ARN for the role you created
- S3 URL/prefix
- AWS region
- KMS key ARN, if applicable
- A small sample event file or example JSONL row
Event File Requirements
Use newline-delimited JSON, with one complete JSON object per line. Each event should include a UTC-compatible timestamp and stable fields for user, host, repository, branch, agent runtime, event action, and event category when available. Share a representative sample file before production ingestion. The sample should show realistic field names and value shapes, but should not include secrets.Related
Asymptote Managed
Review managed visibility, governance, and investigation workflows.
Endpoint Event Schema
Review normalized event fields and example payloads.
AWS S3 Forwarding
Configure customer-managed Beacon event forwarding into S3.
Data Inventory
Review the endpoint event fields Beacon can write.

