Configuring an AWS S3 Bucket for Queryloop
Queryloop offers the option to store your data in your own AWS S3 bucket, giving you full control over your data storage while still leveraging the platform's powerful capabilities. This guide walks you through the process of creating and configuring a properly structured S3 bucket with the necessary permissions.
S3 Bucket Naming Convention
When creating an S3 bucket for use with Queryloop, follow these important naming guidelines:
-
Global Uniqueness Required: S3 bucket names must be unique across the entire AWS ecosystem, not just within your account.
-
Queryloop Naming Pattern: Use the following format for optimal organization:
queryloop-storage-[your-organization-name]
For example:
queryloop-storage-acmecorp
orqueryloop-storage-financialteam
-
Naming Requirements:
- Use only lowercase letters, numbers, and hyphens
- Start and end with a letter or number
- 3-63 characters in length
- Cannot be formatted as an IP address
Step-by-Step S3 Bucket Configuration
Step 1: Create Your S3 Bucket
- Log in to your AWS Management Console
- Navigate to the S3 service
- Click "Create bucket"
- Enter a name following the convention:
queryloop-storage-[your-organization-name]
- Select your preferred region (note this region for future reference)
- Configure bucket settings:
- Block all public access (recommended)
- Enable bucket versioning (recommended for data protection)
- Configure default encryption (recommended for security)
- Click "Create bucket"
Step 2: Create an IAM Policy for Queryloop Access
Queryloop requires specific permissions to interact with your S3 bucket. You'll need to create an IAM policy that grants these permissions while maintaining security.
- Navigate to the IAM service in AWS Console
- Go to "Policies" in the left sidebar
- Click "Create policy"
- Choose the JSON tab and enter the following policy, replacing
queryloop-storage-yourorganizationname
with your actual bucket name:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "QueryloopS3Access",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::queryloop-storage-yourorganizationname",
"arn:aws:s3:::queryloop-storage-yourorganizationname/*"
]
}
]
}
- Click "Next: Tags" (optional: add tags for tracking)
- Click "Next: Review"
- Name your policy (e.g., "QueryloopS3Policy") and add a description
- Click "Create policy"
Step 3: Create an IAM User for Queryloop
Now create a dedicated IAM user that Queryloop will use to access your S3 bucket:
- In the IAM service, click on "Users" in the left sidebar
- Click "Add users"
- Enter a user name (e.g., "queryloop-service")
- Select "Access key - Programmatic access"
- Click "Next: Permissions"
- Select "Attach existing policies directly"
- Search for and select the policy you created in Step 2
- Click "Next: Tags" (optional: add tags for tracking)
- Click "Next: Review"
- Review the user details and click "Create user"
- IMPORTANT: Download the CSV file or copy the Access Key ID and Secret Access Key shown on the screen. This is the only time AWS will show the Secret Access Key!
Step 4: Configure Queryloop to Use Your S3 Bucket
Once you have created your S3 bucket and IAM user, you need to provide these credentials to Queryloop:
- Log in to your Queryloop account
- Navigate to the Settings page
- In the "External Keys" section, find "AWS S3 Configuration"
- Enter the following details:
- S3 Bucket Name: Your bucket name (e.g.,
queryloop-storage-yourorganizationname
) - Access Key ID: The IAM user's access key ID
- Secret Access Key: The IAM user's secret access key
- S3 Bucket Name: Your bucket name (e.g.,
- Click "Save Changes"
- Queryloop will verify the credentials by attempting to connect to the bucket
Security Best Practices
To ensure the security of your S3 bucket and data:
- Use IAM Policies with Least Privilege: Only grant the permissions that Queryloop absolutely needs.
- Enable Bucket Encryption: Use AWS-managed keys (SSE-S3) or your own keys (SSE-KMS) for encryption at rest.
- Enable Bucket Versioning: Protect against accidental deletions and provide an audit trail.
- Enable Access Logging: Monitor and track all requests made to your S3 bucket.
- Regularly Rotate IAM Credentials: Change the IAM user's access keys periodically.
- Monitor with CloudTrail: Track API calls to your S3 bucket for security and compliance.
Next Steps
After configuring your S3 bucket:
- Test the integration by uploading a document in Queryloop
- Verify the document appears in your S3 bucket
- Set up any additional AWS services like CloudWatch alarms for monitoring
By following these steps, you'll have a properly configured S3 bucket that securely integrates with Queryloop while maintaining full control over your data storage.