Report this

What is the reason for this report?

digitalocean_spaces_bucket vs digitalocean_spaces_bucket_object providers in terraform?

Posted on December 23, 2020
pan

By pan



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.

digitalocean_spaces_bucket is used to create a new Space (bucket in S3 terminology) and manage Space-wide settings like CORS policies. digitalocean_spaces_bucket_object is for adding an individual file to the Space.

They can be used together. For example:

resource "digitalocean_spaces_bucket" "static" {
  name   = "static"
  region = "nyc3"
}

resource "digitalocean_spaces_bucket_object" "image" {
  region = digitalocean_spaces_bucket.static.region
  bucket = digitalocean_spaces_bucket.static.name
  key    = "remote/path/to/image.png"
  source = "local/path/to/image.png
}

digitalocean_spaces_bucket_object can also be used with a Space created outside of Terraform by specifying its name and region rather than referencing a digitalocean_spaces_bucket

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.