How to Manage S3 Credentials for Vultr Object Storage Subscription
-
by Blog Admin
- 33
How to Manage S3 Credentials for Vultr Object Storage Subscription
Learn how to view and regenerate access credentials for your Vultr Object Storage S3-compatible buckets.
Managing S3 Credentials for Vultr Object Storage subscription allows viewing and regenerating access credentials for S3-compatible storage buckets. These credentials include the hostname, secret key, and access key. Your apps use these credentials to authenticate to the Vultr Object Storage subscription programmatically. You can also use these credentials to access a Vultr Object Storage subscription using any S3-compatible command-line tool like S3cmd.
Follow this guide to manage S3 Credentials for Vultr Object Storage subscription using the Vultr Customer Portal, API, and CLI.
- Vultr Customer Portal
- Navigate to Products and select Cloud Storage.
- Click Object Storage and select the target Vultr Object Storage subscription.
- Select Overview, and navigate to S3 Credentials.
- Click Regenerate Keys if you need a new copy of the S3 credentials.
- Vultr API
- Send a
GETrequest to List Object Storages endpoint and note thes3_hostname,s3_access_key, ands3_secret_keyfor your target Vultr Object Storage subscription.console$ curl "https://api.vultr.com/v2/object-storage" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}" \ -H "Content-Type: application/json"
- Send a
POSTrequest to the Regenerate Object Storage Keys endpoint endpoint and specify a Vultr Object Storage subscription ID if you need to regenerate the keys.console$ curl "https://api.vultr.com/v2/object-storage/object_storage_id/regenerate-keys" \ -X POST \ -H "Authorization: Bearer ${VULTR_API_KEY}"
Visit the Regenerate Object Storage Keys endpoint to view additional attributes to add to your request.
- Vultr CLI
- List all Vultr Object Storage subscriptions and note the
S3 HOSTNAME,S3 ACCESS KEY, and theS3 SECRET KEYfor your target subscription.console$ vultr-cli object-storage list - Regenerate the keys by specifying a Vultr object storage subscription ID if you need a fresh copy of the credentials.
console
$ vultr-cli object-storage regenerate-keys object_storage_idRun
vultr-cli object-storage regenerate-keys --helpto view all options.
How to Manage S3 Credentials for Vultr Object Storage Subscription Learn how to view and regenerate access credentials for your Vultr Object Storage S3-compatible buckets. Managing S3 Credentials for Vultr Object Storage subscription allows viewing and regenerating access credentials for S3-compatible storage buckets. These credentials include the hostname, secret key,…
How to Manage S3 Credentials for Vultr Object Storage Subscription Learn how to view and regenerate access credentials for your Vultr Object Storage S3-compatible buckets. Managing S3 Credentials for Vultr Object Storage subscription allows viewing and regenerating access credentials for S3-compatible storage buckets. These credentials include the hostname, secret key,…