Update elb_service_account docs (#10299)

The current example using the ELB's account ID will trigger an update for a resource that uses the `.id` instead if the `.arn` syntax.

Once updated to the `.arn`, no changes are detected.

[ci skip]
This commit is contained in:
Mike Fiedler 2016-11-23 03:55:47 -05:00 committed by Paul Stack
parent 1aff30dd5e
commit afe9388457
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ resource "aws_s3_bucket" "elb_logs" {
"Resource": "arn:aws:s3:::my-elb-tf-test-bucket/AWSLogs/*",
"Principal": {
"AWS": [
"${data.aws_elb_service_account.main.id}"
"${data.aws_elb_service_account.main.arn}"
]
}
}