Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danischm committed Jan 30, 2024
1 parent 397c87b commit 9e8cd48
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,10 @@ repos:
args: ["./modules/terraform-aci-multicast-route-map"]
- id: terraform-docs-system
args: ["./modules/terraform-aci-multicast-route-map/examples/complete"]
- id: terraform-docs-system
args: ["./modules/terraform-aci-nd-interface-policy"]
- id: terraform-docs-system
args: ["./modules/terraform-aci-nd-interface-policy/examples/complete"]
- id: terraform-docs-system
args: ["./modules/terraform-aci-nd-ra-prefix-policy"]
- id: terraform-docs-system
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Add support for imported L4L7 devices
- Add support for PIM source and destination filters to bridge domains
- Add support for DHCP label scope to bridge domains
- Add support for ND interface policies

## 0.8.0

Expand Down
10 changes: 5 additions & 5 deletions modules/terraform-aci-nd-interface-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Location in GUI:
```hcl
module "aci_nd_interface_policy" {
source = "netascode/nac-aci/aci//modules/terraform-aci-nd-interface-policy"
version = ">= 0.8.0"
version = ">= 0.8.1"
tenant = "ABC"
name = "ND-INTF-POL1"
Expand Down Expand Up @@ -51,14 +51,14 @@ module "aci_nd_interface_policy" {
| <a name="input_tenant"></a> [tenant](#input\_tenant) | Tenant name. | `string` | n/a | yes |
| <a name="input_name"></a> [name](#input\_name) | ND interface policy name. | `string` | n/a | yes |
| <a name="input_description"></a> [description](#input\_description) | Description. | `string` | `""` | no |
| <a name="input_controller_state"></a> [controller\_state](#input\_controller_state) | Controller administrative state. Choices: `managed-cfg`, `other-cfg`, `suppress-ra`, `suppress-ra-mtu`, `unsolicit-na-glean`. | `list` | `[]` | no |
| <a name="input_hop_limit"></a> [hop\_limit](#input\_hop\_limit) | Hop limit. Minimum value: 1. Maximum value: 255. | `number` | `64` | no |
| <a name="input_ns_tx_interval"></a> [ns\_tx\_interval](#input\_ns\_tx\_interval) | NS transmit interval. Minimum value: 1000. Maximum value: 3600000 | `number` | `1000` | no |
| <a name="input_controller_state"></a> [controller\_state](#input\_controller\_state) | Controller administrative state. | `list(string)` | `[]` | no |
| <a name="input_hop_limit"></a> [hop\_limit](#input\_hop\_limit) | Detection multiplier. Minimum value: 0. Maximum value: 255. | `number` | `64` | no |
| <a name="input_ns_tx_interval"></a> [ns\_tx\_interval](#input\_ns\_tx\_interval) | Neighbor solicitation transmit interval (msec). Minimum value: 1000. Maximum value: 3600000. | `number` | `1000` | no |
| <a name="input_mtu"></a> [mtu](#input\_mtu) | Maximum transmission unit. Minimum value: 1280. Maximum value: 9000. | `number` | `9000` | no |
| <a name="input_retransmit_retry_count"></a> [retransmit\_retry\_count](#input\_retransmit\_retry\_count) | Retransmission retry count. Minimum value: 1. Maximum value: 100. | `number` | `3` | no |
| <a name="input_nud_retransmit_base"></a> [nud\_retransmit\_base](#input\_nud\_retransmit\_base) | NUD retransmission base. Minimum value: 1. Maximum value: 3. | `number` | `1` | no |
| <a name="input_nud_retransmit_interval"></a> [nud\_retransmit\_interval](#input\_nud\_retransmit\_interval) | NUD retransmission interval (msec). Minimum value: 1000. Maximum value: 10000. | `number` | `1000` | no |
| <a name="input_nud_retransmit_count"></a> [nud\_retransmit\_count](#input\_nud\_retransmit\_count) | NUD retransmission count. Minimum value: 1. Maximum value: 3. | `number` | `1` | no |
| <a name="input_nud_retransmit_count"></a> [nud\_retransmit\_count](#input\_nud\_retransmit\_count) | NUD retransmission count. Minimum value: 3. Maximum value: 10. | `number` | `3` | no |
| <a name="input_route_advertise_interval"></a> [route\_advertise\_interval](#input\_route\_advertise\_interval) | Route advertise interval. Minimum value: 4. Maximum value: 1800. | `number` | `600` | no |
| <a name="input_router_lifetime"></a> [router\_lifetime](#input\_router\_lifetime) | Router lifetime. Minimum value: 0. Maximum value: 9000. | `number` | `1800` | no |
| <a name="input_reachable_time"></a> [reachable\_time](#input\_reachable\_time) | Reachable time (msec). Minimum value: 0. Maximum value: 3600000. | `number` | `0` | no |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Note that this example will create resources. Resources can be destroyed with `t
```hcl
module "aci_nd_interface_policy" {
source = "netascode/nac-aci/aci//modules/terraform-aci-nd-interface-policy"
version = ">= 0.8.0"
version = ">= 0.8.1"
tenant = "ABC"
name = "ND-INTF-POL1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "aci_nd_interface_policy" {
source = "netascode/nac-aci/aci//modules/terraform-aci-nd-interface-policy"
version = ">= 0.8.0"
version = ">= 0.8.1"

tenant = "ABC"
name = "ND-INTF-POL1"
Expand Down

0 comments on commit 9e8cd48

Please sign in to comment.