Fix invalid reference in iam_policy_document document page. (#8151)

This commit is contained in:
KOJIMA Kazunori 2016-08-12 11:34:27 +09:00 committed by Paul Stack
parent f8e4166bee
commit 6ff3df8552
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ data "aws_iam_policy_document" "example" {
resource "aws_iam_policy" "example" {
name = "example_policy"
path = "/"
policy = "${data.aws_iam_policy.example.json}"
policy = "${data.aws_iam_policy_document.example.json}"
}
```