Skip to content

Commit

Permalink
Merge pull request #591 from vmware/doc-fixes
Browse files Browse the repository at this point in the history
Several fixes and clarifications in documentation
  • Loading branch information
annakhm authored Mar 11, 2021
2 parents 0d86799 + 845edd3 commit d989d9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion website/docs/r/policy_evpn_config.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ The following arguments are supported:
* `gateway_path` - (Required) Policy Path for Tier0 Gateway to configure EVPN on.
* `mode` - (Required) EVPN Mode, one of `INLINE` or `ROUTE_SERVER`. In `ROUTE_SERVER` mode, edge nodes participate in the BGP EVPN control plane route exchanges only and do not participate in the data forwarding
* `vni_pool_path` - (Optional) This setting is only applicable (and required) with `INLINE` mode.
* `vni_pool_path` - (Optional) This setting is only applicable (and required) with `ROUTE_SERVER` mode.
* `tag` - (Optional) A list of scope + tag pairs to associate with this resource.

## Attributes Reference
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/policy_lb_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ The following arguments are supported:
* `active_monitor_path` - (Optional) Active monitor to be associated with this pool.
* `passive_monitor_path` - (Optional) Passive monitor to be associated with this pool.
* `snat` - (Optional) Source NAT may be required to ensure traffic from the server destined to the client is received by the load balancer.
* `type` - (Optional) SNAT type, one of 'AUTOMAP`, `DISABLED`, `IPPOOL`. Default is `AUTOMAP`.
* `type` - (Optional) SNAT type, one of `AUTOMAP`, `DISABLED`, `IPPOOL`. Default is `AUTOMAP`.
* `ip_pool_addresses` - (Optional) List of IP ranges or IP CIDRs to use for IPPOOL SNAT type.
* `tcp_multiplexing_enabled` - (Optional) Enable TCP multiplexing within the pool.
* `tcp_multiplexing_number` - (Optional) The maximum number of TCP connections per pool that are idly kept alive for sending future client requests.
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/policy_ospf_area.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "nsxt_policy_ospf_area" "test" {
area_type = "NORMAL"
auth_mode = "PASSWORD"
secret_key = "af12a1ed2496"
secret_key = "af12a1ed"
}
```

Expand All @@ -39,7 +39,7 @@ The following arguments are supported:
* `area_type` - (Optional) OSPF Area type, one of `NORMAL` or `NSSA`. Default is `NSSA`.
* `auth_mode` - (Optional) OSPF Authentication mode, one of `NONE`, `PASSWORD` or `MD5`. By default, OSPF authentication is disabled with mode `NONE`.
* `key_id` - (Optional) Authentication secret key id, required for authenication mode `MD5`. This attribute is sensitive.
* `secret_key` - (Optional) Authentication secret key, required for authentication mode other than `NONE`. This attribute is sensitive.
* `secret_key` - (Optional) Authentication secret key, required for authentication mode other than `NONE`. This attribute is sensitive. Length should not exceed 8 characters.

## Attributes Reference

Expand All @@ -56,7 +56,7 @@ An existing OSPF Area can be [imported][docs-import] into this resource, via the
[docs-import]: /docs/import/index.html

```
terraform import nsxt_policy_ospf_area.test GW-ID/LOCALE-SERVICE-ID/AREA-ID
terraform import nsxt_policy_ospf_area.test GW-ID/LOCALE-SERVICE-ID/ID
```

The above command imports OSPF Area named `test` with ID `AREA-ID` on Tier-0 Gateway `GW-ID` and Locale Service `LOCALE-SERVICE-ID`.
The above command imports OSPF Area named `test` with NSX ID `ID` on Tier-0 Gateway `GW-ID` and Locale Service `LOCALE-SERVICE-ID`.

0 comments on commit d989d9c

Please sign in to comment.