docs/aws: Update documentation example to remove \ from bucket prefix (#8289)

This commit is contained in:
Paul Stack 2016-08-18 18:44:19 +01:00 committed by Radek Simko
parent 9a70bfa977
commit ff0d9aff76
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ Provides a CloudTrail resource.
resource "aws_cloudtrail" "foobar" {
name = "tf-trail-foobar"
s3_bucket_name = "${aws_s3_bucket.foo.id}"
s3_key_prefix = "/prefix"
s3_key_prefix = "prefix"
include_global_service_events = false
}