-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1030 from ksamoray/ds-transport-node
Implement nsxt_edge_transport_node data source
- Loading branch information
Showing
5 changed files
with
172 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* Copyright © 2023 VMware, Inc. All Rights Reserved. | ||
SPDX-License-Identifier: MPL-2.0 */ | ||
|
||
package nsxt | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/vmware/vsphere-automation-sdk-go/runtime/bindings" | ||
"github.com/vmware/vsphere-automation-sdk-go/services/nsxt-mp/nsx" | ||
"github.com/vmware/vsphere-automation-sdk-go/services/nsxt-mp/nsx/model" | ||
) | ||
|
||
func dataSourceNsxtEdgeTransportNode() *schema.Resource { | ||
return &schema.Resource{ | ||
Read: dataSourceNsxtEdgeTransportNodeRead, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"id": getDataSourceIDSchema(), | ||
"display_name": getDataSourceExtendedDisplayNameSchema(), | ||
"description": getDescriptionSchema(), | ||
}, | ||
} | ||
} | ||
|
||
func dataSourceNsxtEdgeTransportNodeRead(d *schema.ResourceData, m interface{}) error { | ||
connector := getPolicyConnector(m) | ||
client := nsx.NewTransportNodesClient(connector) | ||
|
||
objID := d.Get("id").(string) | ||
objName := d.Get("display_name").(string) | ||
|
||
var obj model.TransportNode | ||
|
||
if objID != "" { | ||
// Get by id | ||
objGet, err := client.Get(objID) | ||
if err != nil { | ||
return fmt.Errorf("failed to read TransportNode %s: %v", objID, err) | ||
} | ||
|
||
// Make sure that found obj is an EdgeNode | ||
converter := bindings.NewTypeConverter() | ||
base, errs := converter.ConvertToGolang(obj.NodeDeploymentInfo, model.NodeBindingType()) | ||
if errs != nil { | ||
return fmt.Errorf("failed to convert NodeDeploymentInfo for node %s %v", objID, errs[0]) | ||
} | ||
node := base.(model.Node) | ||
if node.ResourceType != model.EdgeNode__TYPE_IDENTIFIER { | ||
return fmt.Errorf("no Transport Node matches the criteria") | ||
} | ||
obj = objGet | ||
} else { | ||
// Get by full name/prefix - filter out anything except EdgeNodes | ||
objType := model.EdgeNode__TYPE_IDENTIFIER | ||
objList, err := client.List(nil, nil, nil, nil, nil, &objType, nil, nil, nil, nil) | ||
if err != nil { | ||
return fmt.Errorf("failed to read Transport Nodes: %v", err) | ||
} | ||
// go over the list to find the correct one (prefer a perfect match. If not - prefix match) | ||
var perfectMatch []model.TransportNode | ||
var prefixMatch []model.TransportNode | ||
for _, objInList := range objList.Results { | ||
if len(objName) == 0 { | ||
// We want to grab single Transport Node | ||
perfectMatch = append(perfectMatch, objInList) | ||
continue | ||
} | ||
if strings.HasPrefix(*objInList.DisplayName, objName) { | ||
prefixMatch = append(prefixMatch, objInList) | ||
} | ||
if *objInList.DisplayName == objName { | ||
perfectMatch = append(perfectMatch, objInList) | ||
} | ||
} | ||
if len(perfectMatch) > 0 { | ||
if len(perfectMatch) > 1 { | ||
return fmt.Errorf("found multiple Transport Nodes matching the criteria") | ||
} | ||
obj = perfectMatch[0] | ||
} else if len(prefixMatch) > 0 { | ||
if len(prefixMatch) > 1 { | ||
return fmt.Errorf("found multiple Transport Nodes matching the criteria") | ||
} | ||
obj = prefixMatch[0] | ||
} else { | ||
return fmt.Errorf("no Transport Node matches the criteria") | ||
} | ||
} | ||
d.SetId(*obj.Id) | ||
d.Set("display_name", obj.DisplayName) | ||
d.Set("description", obj.Description) | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* Copyright © 2023 VMware, Inc. All Rights Reserved. | ||
SPDX-License-Identifier: MPL-2.0 */ | ||
|
||
package nsxt | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
) | ||
|
||
func TestAccDataSourceNsxtEdgeTransportNode_basic(t *testing.T) { | ||
htnName := getEdgeTransportNodeName() | ||
testResourceName := "data.nsxt_edge_transport_node.test" | ||
|
||
resource.ParallelTest(t, resource.TestCase{ | ||
PreCheck: func() { | ||
testAccOnlyLocalManager(t) | ||
testAccPreCheck(t) | ||
testAccEnvDefined(t, "NSXT_TEST_EDGE_TRANSPORT_NODE") | ||
}, | ||
Providers: testAccProviders, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccNSXEdgeTransportNodeReadTemplate(htnName), | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttr(testResourceName, "display_name", htnName), | ||
resource.TestCheckResourceAttrSet(testResourceName, "id"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccNSXEdgeTransportNodeReadTemplate(name string) string { | ||
return fmt.Sprintf(` | ||
data "nsxt_edge_transport_node" "test" { | ||
display_name = "%s" | ||
}`, name) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
subcategory: "Beta" | ||
layout: "nsxt" | ||
page_title: "NSXT: edge_transport_node" | ||
description: An Edge Transport Node data source. | ||
--- | ||
|
||
# nsxt_edge_transport_node | ||
|
||
This data source provides information about an Edge Transport Node configured on NSX. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "nsxt_edge_transport_node" "test_node" { | ||
display_name = "edgenode1" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `id` - (Optional) The ID of Edge Transport Node to retrieve | ||
* `display_name` - (Optional) The Display Name of the Edge Transport Node to retrieve. | ||
|
||
## Attributes Reference | ||
|
||
In addition to arguments listed above, the following attributes are exported: | ||
|
||
* `description` - The description of the resource. |