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

Become a contributor for community

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

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.