Skip to content

Commit

Permalink
docs: Make WAF Web ACL and Rule data source terms consistent (#10504)
Browse files Browse the repository at this point in the history
  • Loading branch information
diogoazevedos authored and aeschright committed Oct 30, 2019
1 parent 7699f5e commit 8ccb1d4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions website/docs/d/waf_web_acl.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ description: |-
Retrieves a WAF Web ACL id.
---

# Data Source: aws_waf_rule
# Data Source: aws_waf_web_acl

`aws_waf_rule` Retrieves a WAF Web ACL Resource Id.
`aws_waf_web_acl` Retrieves a WAF Web ACL Resource Id.

## Example Usage

```hcl
data "aws_waf_web_acl" "example" {
name = "tfWAFRule"
name = "tfWAFWebACL"
}
```

Expand All @@ -26,4 +26,4 @@ The following arguments are supported:
## Attributes Reference
In addition to all arguments above, the following attributes are exported:

* `id` - The ID of the WAF WebACL.
* `id` - The ID of the WAF Web ACL.
6 changes: 3 additions & 3 deletions website/docs/d/wafregional_rule.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ description: |-
Retrieves an AWS WAF Regional rule id.
---

# Data Source: aws_waf_rule
# Data Source: aws_wafregional_rule

`aws_wafregional_rule` Retrieves a WAF Regional Rule Resource Id.

## Example Usage

```hcl
data "aws_wafregional_rule" "example" {
name = "tfWAFRule"
name = "tfWAFRegionalRule"
}
```

## Argument Reference

The following arguments are supported:

* `name` - (Required) The name of the WAF rule.
* `name` - (Required) The name of the WAF Regional rule.

## Attributes Reference
In addition to all arguments above, the following attributes are exported:
Expand Down
8 changes: 4 additions & 4 deletions website/docs/d/wafregional_web_acl.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: "aws"
page_title: "AWS: aws_wafregional_web_acl"
description: |-
Retrieves a WAF Regional Web ACL id.
Retrieves a WAF Regional Web ACL id.
---

# Data Source: aws_wafregional_web_acl
Expand All @@ -13,17 +13,17 @@ description: |-

```hcl
data "aws_wafregional_web_acl" "example" {
name = "tfWAFRule"
name = "tfWAFRegionalWebACL"
}
```

## Argument Reference

The following arguments are supported:

* `name` - (Required) The name of the WAF Web ACL.
* `name` - (Required) The name of the WAF Regional Web ACL.

## Attributes Reference
In addition to all arguments above, the following attributes are exported:

* `id` - The ID of the WAF Regional WebACL.
* `id` - The ID of the WAF Regional Web ACL.

0 comments on commit 8ccb1d4

Please sign in to comment.