Skip to content

Commit

Permalink
Fix ses_identity_policy documentation (#10616)
Browse files Browse the repository at this point in the history
Examples refer to aws_ses_identity_policy.test. However, the actual
resource is called aws_ses_identity_policy.example.
  • Loading branch information
ivanvc authored and aeschright committed Oct 24, 2019
1 parent 15cfb0d commit 54c6724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/ses_identity_policy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resource "aws_ses_domain_identity" "example" {
data "aws_iam_policy_document" "example" {
statement {
actions = ["SES:SendEmail", "SES:SendRawEmail"]
resources = ["${aws_ses_domain_identity.test.arn}"]
resources = ["${aws_ses_domain_identity.example.arn}"]
principals {
identifiers = ["*"]
Expand Down Expand Up @@ -48,5 +48,5 @@ The following arguments are supported:
SES Identity Policies can be imported using the identity and policy name, separated by a pipe character (`|`), e.g.

```
$ terraform import aws_ses_identity_policy.test 'example.com|example'
$ terraform import aws_ses_identity_policy.example 'example.com|example'
```

0 comments on commit 54c6724

Please sign in to comment.