Sentry extension implementing the NodeStorage interface for Amazon Simple Storage Service and S3-compatible object storages such as Minio.
SENTRY_NODESTORE = 'sentry_s3_nodestore.backend.S3NodeStorage'
SENTRY_NODESTORE_OPTIONS = {
'bucket_name': 'my-sentry-bucket',
'url': 'http://my-minio.local:9000',
'aws_access_key_id': 'ABCD...',
'aws_secret_access_key': 'EFG....'
}
The bucket should already exist and be accessible by access key, this extension won't create the bucket.
- Original author Ernest W. Durbin III
- Upgrade to Boto3 by Letnab