Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some documentation fixes #998

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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