Loading...

CDN.com.tr Help

Object Storage and AWS CLI

Create buckets, rotate access keys, bind buckets to apps, and verify with the S3-compatible endpoint.

Object Storage and AWS CLI

Create buckets, rotate access keys, bind buckets to apps, and verify with the S3-compatible endpoint.

Panel path

  1. Management Panel
  2. Hosting / Platforms
  3. Object Storage
  4. Bucket / Access Key / Binding
  5. AWS CLI verification

Prerequisites

  • Object Storage entitlement must be ready.
  • Access key secret is shown only on creation and redacted in screenshots.
  • S3 verification uses the `https://s3.cdn.com.tr` endpoint.

Step-by-step guide

1

Check storage prerequisite

Object Storage rights come from the platform package and are required for app bindings.

  • Open the Object Storage section in the platform guide.
  • Check bucket and key limits.

Expected result: Bucket/key creation rights are clear.

cdnctl equivalent
cdnctl object-storage buckets list --account <account_uuid>
2

Create bucket/key/binding and verify with S3

After bucket and access key are ready, AWS CLI is an operation/verification tool.

  • Create bucket.
  • Generate access key and store the secret safely.
  • Create app binding.
  • Test the endpoint with AWS CLI.

Expected result: The S3-compatible endpoint can list or upload objects.

cdnctl equivalent
cdnctl object-storage buckets create --account <account_uuid> --name uploads
aws --endpoint-url https://s3.cdn.com.tr s3 ls s3://<bucket>

Verification

  • Access key secret is not written into docs.
  • AWS CLI endpoint is `https://s3.cdn.com.tr`.
  • Bucket is scoped to the selected account.

Use cases

A migrated app needs user uploads in Object Storage and a terminal smoke check with AWS CLI.

Quick workflow

  1. Create bucket.
  2. Create access key.
  3. Bind bucket to app.
  4. Run AWS CLI against `https://s3.cdn.com.tr`.
  5. Rotate/revoke keys when needed.

Checks

  • Bucket belongs to account.
  • Access secret is only shown at creation.
  • Checksum compatibility variables are documented.

Related pages