From 845edd3f4d89833906a5e447f1a780ddc52e51fd Mon Sep 17 00:00:00 2001 From: Anna Khmelnitsky Date: Thu, 11 Mar 2021 03:29:46 +0000 Subject: [PATCH] Several fixes and clarifications in documentation --- website/docs/r/policy_evpn_config.html.markdown | 1 - website/docs/r/policy_lb_pool.html.markdown | 2 +- website/docs/r/policy_ospf_area.html.markdown | 8 ++++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/website/docs/r/policy_evpn_config.html.markdown b/website/docs/r/policy_evpn_config.html.markdown index 2bc611c29..892ab45e2 100644 --- a/website/docs/r/policy_evpn_config.html.markdown +++ b/website/docs/r/policy_evpn_config.html.markdown @@ -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 diff --git a/website/docs/r/policy_lb_pool.html.markdown b/website/docs/r/policy_lb_pool.html.markdown index 8b54260d9..5b09429cd 100644 --- a/website/docs/r/policy_lb_pool.html.markdown +++ b/website/docs/r/policy_lb_pool.html.markdown @@ -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. diff --git a/website/docs/r/policy_ospf_area.html.markdown b/website/docs/r/policy_ospf_area.html.markdown index 1f8b40c88..4b0713870 100644 --- a/website/docs/r/policy_ospf_area.html.markdown +++ b/website/docs/r/policy_ospf_area.html.markdown @@ -22,7 +22,7 @@ resource "nsxt_policy_ospf_area" "test" { area_type = "NORMAL" auth_mode = "PASSWORD" - secret_key = "af12a1ed2496" + secret_key = "af12a1ed" } ``` @@ -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 @@ -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`.