Merge pull request #8619 from BabakMN/fix-iam-policy-document-documentation
Add missing json attribute to documentation for aws_iam_policy_document
This commit is contained in:
commit
827a899c9b
|
@ -93,7 +93,7 @@ data "aws_iam_policy_document" "s3_policy" {
|
||||||
|
|
||||||
aws_s3_bucket "bucket" {
|
aws_s3_bucket "bucket" {
|
||||||
...
|
...
|
||||||
policy = "${data.aws_iam_policy_document.s3_policy}"
|
policy = "${data.aws_iam_policy_document.s3_policy.json}"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -109,4 +109,4 @@ Cloudfront Origin Access Identities can be imported using the `id`, e.g.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ terraform import aws_cloudfront_origin_access_identity.origin_access E74FTE3AEXAMPLE
|
$ terraform import aws_cloudfront_origin_access_identity.origin_access E74FTE3AEXAMPLE
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue