Stalar
Integrations

AWS S3

Browse buckets and objects from AWS S3

Browse buckets, list objects, and read files from AWS S3.

What Stalar can do

ToolDescription
List bucketsGet all S3 buckets
List objectsList objects in a bucket
Get objectRead object contents
Get object metadataGet metadata for an object
Get bucket infoGet bucket configuration details

Configuration

Required

FieldDescription
accessKeyIdAWS access key ID
secretAccessKeyAWS secret access key
regionAWS 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?"