Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): fixed documents for network acl and rules #5302

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/r/is_network_acl.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Review the argument references that you can specify for your resource.
- `rules`- (Optional, Array of Strings) A list of rules for a network ACL. The order in which the rules are added to the list determines the priority of the rules. For example, the first rule that you want to enforce must be specified as the first rule in this list.

Nested scheme for `rules`:
- `name` - (Required, String) The user-defined name for this rule.
- `name` - (Optional, String) The user-defined name for this rule.
- `action` - (Required, String) `Allow` or `deny` matching network traffic.
- `source` - (Required, String) The source IP address or CIDR block.
- `destination` - (Required, String) The destination IP address or CIDR block.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/is_network_acl_rule.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Review the argument references that you can specify for your resource.
- `code` - (Optional, Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- `type` - (Optional, Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
- `network_acl` - (Required, String) The ID of the network ACL.
- `name` - (Required, String) The user-defined name for this rule.
- `name` - (Optional, String) The user-defined name for this rule.
- `source` - (Required, String) The source IP address or CIDR block.
- `tcp` - (Optional, List) TCP protocol.

Expand Down
Loading