Access Keys
Object Storage Access Keys
Section titled “Object Storage Access Keys”Your object storage instance has S3-compatible credentials that allow programmatic access via any S3-compatible tool or SDK.
S3 endpoints
Section titled “S3 endpoints”| Region | Endpoint |
|---|---|
| YUL (Montreal) | https://objects.yul.zcp.zsoftly.ca |
| YOW (Ottawa) | https://objects.yow.zcp.zsoftly.ca |
The endpoint for your instance matches the region you selected when creating it.
View your credentials
Section titled “View your credentials”- From the Object Storage list, find your instance.
- Click the Credentials icon (key icon in the actions row).
- The panel shows:
- Access Key ID: your S3 access key
- Secret Access Key: your S3 secret key (treat this like a password)
Use credentials with AWS CLI
Section titled “Use credentials with AWS CLI”Configure a named profile for your ZSoftly object storage:
aws configure --profile zsoftly# AWS Access Key ID: <your access key># AWS Secret Access Key: <your secret key># Default region name: (leave blank)# Default output format: jsonThen pass the endpoint when running commands:
# YUL (Montreal)aws s3 ls --profile zsoftly --endpoint-url https://objects.yul.zcp.zsoftly.ca
# YOW (Ottawa)aws s3 ls --profile zsoftly --endpoint-url https://objects.yow.zcp.zsoftly.caUse credentials with environment variables
Section titled “Use credentials with environment variables”export AWS_ACCESS_KEY_ID="<your access key>"export AWS_SECRET_ACCESS_KEY="<your secret key>"
# Set the endpoint for your regionexport AWS_ENDPOINT_URL="https://objects.yul.zcp.zsoftly.ca"See also: Create Bucket, S3 Usage