Question

How do I create a versioned bucket in Spaces?

The API doc for Spaces says that Bucket Versioning is supported, but only via the API. But I cannot see in the API doc how to create or use a bucket with versioning enabled. Any help appreciated!


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

jarland
DigitalOcean Employee
DigitalOcean Employee badge
July 13, 2018
Accepted Answer

Hello friend!

Versioning is currently something that you can enable through the S3 compatible Spaces API. Currently this is the best documentation I can locate on the matter:

https://docs.aws.amazon.com/AmazonS3/latest/dev/manage-versioning-examples.html

We typically suggest using s3cmd to interact with the API. However, s3cmd does not seem to currently support this. It never hurts to give an upvote to the request though:

https://github.com/s3tools/s3cmd/issues/937

Kind Regards, Jarland

These commands worked for me to enable versioning:

$ aws --profile DOSpaces --endpoint https://nyc3.digitaloceanspaces.com s3api put-bucket-versioning --bucket testbucket --versioning-configuration Status=Enabled


$ aws --profile DOSpaces --endpoint https://nyc3.digitaloceanspaces.com s3api get-bucket-versioning --bucket testbucket

{
   “Status”: “Enabled”
}

I got these commands after contacting Digital Ocean support. You can read the full response they wrote me here: https://ideas.digitalocean.com/ideas/DO-I-244

After unsuccessfully trying to access the API for a while I managed to set this setting using the official AWS CLI

  1. Get it at https://aws.amazon.com/cli/
  2. Type aws configure in your terminal and supply your DO credentials (you can leave the region empty)
  3. Run aws s3api list-object-versions --bucket {{ BUCKET_NAME }} --endpoint=https://{{ REGION }}.digitaloceanspaces.com

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel