Skip to content

Commit

Permalink
Some documentation fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Khmelnitsky <[email protected]>
  • Loading branch information
annakhm committed Oct 12, 2023
1 parent bd0d7ce commit 3f2187d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
14 changes: 10 additions & 4 deletions website/docs/r/manager_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/policy_dns_forwarder_zone.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/policy_gateway_dns_forwarder.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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]
}
```

Expand All @@ -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]
}
```

Expand Down

0 comments on commit 3f2187d

Please sign in to comment.