Merge pull request #17572 from hashicorp/d-getting-started-resource-dependencies-bucket-name

docs/getting-started: Replace underscores in aws_s3_bucket name in dependencies example
This commit is contained in:
Brian Flad 2018-03-13 15:22:49 -04:00 committed by GitHub
commit 504d5ef233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ resource "aws_s3_bucket" "example" {
# NOTE: S3 bucket names must be unique across _all_ AWS accounts, so
# this name must be changed before applying this example to avoid naming
# conflicts.
bucket = "terraform_getting_started_guide"
bucket = "terraform-getting-started-guide"
acl = "private"
}