Fix correct argument name in given example for resource digitalocean_spaces_bucket_object (#437)

This commit is contained in:
Julien K 2020-05-11 16:51:38 -04:00 committed by GitHub
parent d1929c155a
commit fe0dd8b483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ resource "digitalocean_spaces_bucket" "foobar" {
resource "digitalocean_spaces_bucket_object" "index" {
region = digitalocean_spaces_bucket.foobar.region
name = digitalocean_spaces_bucket.foobar.name
bucket = digitalocean_spaces_bucket.foobar.name
key = "index.html"
content = "<html><body><p>This page is empty.</p></body></html>"
content_type = "text/html"