Integrations
AWS S3
Browse buckets and objects from AWS S3
Browse buckets, list objects, and read files from AWS S3.
What Stalar can do
| Tool | Description |
|---|---|
| List buckets | Get all S3 buckets |
| List objects | List objects in a bucket |
| Get object | Read object contents |
| Get object metadata | Get metadata for an object |
| Get bucket info | Get bucket configuration details |
Configuration
Required
| Field | Description |
|---|---|
accessKeyId | AWS access key ID |
secretAccessKey | AWS secret access key |
region | AWS region (e.g., us-east-1) |
Config file example
integrations:
- name: "aws-s3-prod"
type: "aws-s3"
environment: "production"
config:
accessKeyId: "${AWS_ACCESS_KEY_ID}"
secretAccessKey: "${AWS_SECRET_ACCESS_KEY}"
region: "us-east-1"
# Multiple regions
- name: "aws-s3-eu"
type: "aws-s3"
environment: "production"
config:
accessKeyId: "${AWS_ACCESS_KEY_ID}"
secretAccessKey: "${AWS_SECRET_ACCESS_KEY}"
region: "eu-west-1"Example queries
- "What buckets do we have?"
- "List files in the logs bucket"
- "Show me the contents of config.json"
- "What's the size of the backup bucket?"