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!
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!
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.
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:
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
aws configure
in your terminal and supply your DO credentials (you can leave the region empty)aws s3api list-object-versions --bucket {{ BUCKET_NAME }} --endpoint=https://{{ REGION }}.digitaloceanspaces.com