{% extends "base.html" %} {% set active_page = 'files' %} {% block title %}Manage S3 Buckets - Ursa Customer Portal{% endblock %} {% block content %}
Link and validate S3 buckets for file storage and analysis
Link your S3 buckets to register files for analysis. Ursa validates read/write permissions and provides remediation steps if access is not configured correctly.
Link a new S3 bucket to start registering files for analysis.
{{ bucket.description }}
{% endif %}Link an S3 bucket to start registering files for analysis
Use these policy templates to configure access for Ursa:
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:ListBucket", "s3:GetBucketLocation"],
"Resource": ["arn:aws:s3:::YOUR-BUCKET-NAME", "arn:aws:s3:::YOUR-BUCKET-NAME/*"]
}]
}
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:PutObject", "s3:DeleteObject", "s3:ListBucket", "s3:GetBucketLocation"],
"Resource": ["arn:aws:s3:::YOUR-BUCKET-NAME", "arn:aws:s3:::YOUR-BUCKET-NAME/*"]
}]
}