Skip to content

Commit 6f0739d

Browse files
committed
Fix edge resource and data source docs.
Documentation for the resource above had the wrong IP assignment type witin the example. Also, fix resource name in MP edge realization datasource. Signed-off-by: Kobi Samoray <[email protected]>
1 parent a88d95f commit 6f0739d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: website/docs/d/transport_node_realization.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This data source provides information about the realization of a transport node
1212
## Example Usage
1313

1414
```hcl
15-
resource "nsxt_transport_node" "test" {
15+
resource "nsxt_edge_transport_node" "test" {
1616
description = "Terraform-deployed edge node"
1717
display_name = "tf_edge_node"
1818
standard_host_switch {
@@ -52,7 +52,7 @@ resource "nsxt_transport_node" "test" {
5252
}
5353
5454
data "nsxt_transport_node_realization" "test" {
55-
id = nsxt_transport_node.test.id
55+
id = nsxt_edge_transport_node.test.id
5656
timeout = 60
5757
}
5858
```

Diff for: website/docs/r/policy_edge_transport_node.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ resource "nsxt_policy_edge_transport_node" "test" {
3232
dhcp_v4 = true
3333
}
3434
ip_assignment {
35-
static_v6 {
35+
static_ipv6 {
3636
default_gateway = "2001:0000:130F:0000:0000:09C0:876A:1"
3737
management_port_subnet {
3838
ip_addresses = ["2001:0000:130F:0000:0000:09C0:876A:130B"]

0 commit comments

Comments
 (0)