From 3f2187dd540ca0c4a073a5c59c1badc0a111c1a7 Mon Sep 17 00:00:00 2001 From: Anna Khmelnitsky Date: Thu, 12 Oct 2023 22:47:39 +0000 Subject: [PATCH] Some documentation fixes Signed-off-by: Anna Khmelnitsky --- website/docs/r/manager_cluster.html.markdown | 14 ++++++++++---- .../docs/r/policy_dns_forwarder_zone.html.markdown | 2 +- .../r/policy_gateway_dns_forwarder.html.markdown | 8 ++++---- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/website/docs/r/manager_cluster.html.markdown b/website/docs/r/manager_cluster.html.markdown index edff22b84..edba82b4d 100644 --- a/website/docs/r/manager_cluster.html.markdown +++ b/website/docs/r/manager_cluster.html.markdown @@ -34,13 +34,19 @@ resource "nsxt_manager_cluster" "test" { The following arguments are supported: -* `node` - (Required) IP Address of the node that will join the cluster of the host node. - * `id` - (Computed) Uuid of the cluster node. +* `node` - (Required) Specification of the node that will join the cluster of the host node. * `ip_address` - (Required) Ip address of the node. * `username` - (Required) The username for login to the node. * `password` - (Required) The password for login to the node. - * `fqdn` - (Computed) Fqdn of the node. - * `status` - (Computed) Status of the node, value will be one of `JOINING`, `JOINED`, `REMOVING` and `REMOVED`. + +## Argument Reference + +In addition to arguments listed above, the following attributes are exported: + +* `node` + * `id` - Uuid of the cluster node. + * `fqdn` - FQDN of the node. + * `status` - Status of the node, value will be one of `JOINING`, `JOINED`, `REMOVING` and `REMOVED`. ## Importing diff --git a/website/docs/r/policy_dns_forwarder_zone.html.markdown b/website/docs/r/policy_dns_forwarder_zone.html.markdown index d5e550031..3b992407d 100644 --- a/website/docs/r/policy_dns_forwarder_zone.html.markdown +++ b/website/docs/r/policy_dns_forwarder_zone.html.markdown @@ -51,7 +51,7 @@ The following arguments are supported: * `context` - (Optional) The context which the object belongs to * `project_id` - (Required) The ID of the project which the object belongs to * `upstream_servers` - (Required) List of server IP addresses for this Forwarder Zone. -* `dns_domain_names` - (Optional) For conditional (FQDN) zones, a list of maximum 5 domains. For Default Forwarder Zone, this attribute should not be specified. +* `dns_domain_names` - (Optional) For conditional (FQDN) zones, a list of domains. For Default Forwarder Zone, this attribute should not be specified. * `source_ip` - (Optional) The source IP address used by the DNS Forwarder zone. diff --git a/website/docs/r/policy_gateway_dns_forwarder.html.markdown b/website/docs/r/policy_gateway_dns_forwarder.html.markdown index 72d5f5731..e558dde34 100644 --- a/website/docs/r/policy_gateway_dns_forwarder.html.markdown +++ b/website/docs/r/policy_gateway_dns_forwarder.html.markdown @@ -27,8 +27,8 @@ resource "nsxt_policy_gateway_dns_forwarder" "test" { log_level = "DEBUG" cache_size = 2048 - default_forwarder_zone_path = nsxt_policy_forwarder_zone.default.path - conditional_forwarder_zone_paths = [nsxt_policy_forwarder_zone.oranges.path, nsxt_policy_forwarder_zone.apples.path] + default_forwarder_zone_path = nsxt_policy_dns_forwarder_zone.default.path + conditional_forwarder_zone_paths = [nsxt_policy_dns_forwarder_zone.oranges.path, nsxt_policy_dns_forwarder_zone.apples.path] } ``` @@ -51,8 +51,8 @@ resource "nsxt_policy_gateway_dns_forwarder" "test" { log_level = "DEBUG" cache_size = 2048 - default_forwarder_zone_path = nsxt_policy_forwarder_zone.default.path - conditional_forwarder_zone_paths = [nsxt_policy_forwarder_zone.oranges.path, nsxt_policy_forwarder_zone.apples.path] + default_forwarder_zone_path = nsxt_policy_dns_forwarder_zone.default.path + conditional_forwarder_zone_paths = [nsxt_policy_dns_forwarder_zone.oranges.path, nsxt_policy_dns_forwarder_zone.apples.path] } ```