Skip to content

Commit

Permalink
Add support for configuring cluster virtual IP
Browse files Browse the repository at this point in the history
Implement cluster virtual IP resource to configure
Ipv4 and Ipv6 virtual IP of NSX cluster.

Signed-off-by: Shizhao Liu <[email protected]>
  • Loading branch information
Shizhao Liu authored and root committed Aug 31, 2023
1 parent 56f6b53 commit 6b9b5a8
Show file tree
Hide file tree
Showing 21 changed files with 2,633 additions and 0 deletions.
1 change: 1 addition & 0 deletions nsxt/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ func Provider() *schema.Provider {
"nsxt_manager_cluster": resourceNsxtManagerCluster(),
"nsxt_uplink_host_switch_profile": resourceNsxtUplinkHostSwitchProfile(),
"nsxt_transport_node": resourceNsxtTransportNode(),
"nsxt_cluster_virtual_ip": resourceNsxtClusterVirualIP(),
},

ConfigureFunc: providerConfigure,
Expand Down
114 changes: 114 additions & 0 deletions nsxt/resource_nsxt_cluster_virtual_ip.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
/* Copyright © 2023 VMware, Inc. All Rights Reserved.
SPDX-License-Identifier: MPL-2.0 */

package nsxt

import (
"fmt"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/vmware/vsphere-automation-sdk-go/services/nsxt-mp/nsx/cluster"
nsxModel "github.com/vmware/vsphere-automation-sdk-go/services/nsxt-mp/nsx/model"
)

var ClusterVirtualIPForceType = []string{
nsxModel.ClusterVirtualIpProperties_FORCE_TRUE,
nsxModel.ClusterVirtualIpProperties_FORCE_FALSE,
}

var DefaultIPv4VirtualAddress = "0.0.0.0"

var DefaultIPv6VirtualAddress = "::"

func resourceNsxtClusterVirualIP() *schema.Resource {
return &schema.Resource{
Create: resourceNsxtClusterVirualIPCreate,
Read: resourceNsxtClusterVirualIPRead,
Update: resourceNsxtClusterVirualIPUpdate,
Delete: resourceNsxtClusterVirualIPDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},

Schema: map[string]*schema.Schema{
"force": {
Type: schema.TypeString,
Description: "On enable it ignores duplicate address detection and DNS lookup validation check",
Optional: true,
ValidateFunc: validation.StringInSlice(ClusterVirtualIPForceType, false),
Default: nsxModel.ClusterVirtualIpProperties_FORCE_FALSE,
},
"ip_address": {
Type: schema.TypeString,
Description: "Virtual IPv4 address",
Optional: true,
ValidateFunc: validation.IsIPv4Address,
Default: DefaultIPv4VirtualAddress,
},
"ipv6_address": {
Type: schema.TypeString,
Description: "IP address of the cluster node that will join the cluster of the host node",
Optional: true,
ValidateFunc: validation.IsIPv6Address,
Default: DefaultIPv6VirtualAddress,
},
},
}
}

func resourceNsxtClusterVirualIPCreate(d *schema.ResourceData, m interface{}) error {
// Virtual IP is a property of the cluster and does not have its NSX ID
// For create and update we can use the same client function setvirtual IP
return resourceNsxtClusterVirualIPUpdate(d, m)
}

func resourceNsxtClusterVirualIPRead(d *schema.ResourceData, m interface{}) error {
connector := getPolicyConnector(m)
client := cluster.NewApiVirtualIpClient(connector)

obj, err := client.Get()
if err != nil {
return err
}

// For some reason the Get() function of ApiVirtulIPClient will only return ip address information
// so skip setting force here
d.Set("ip_address", obj.IpAddress)
d.Set("ipv6_address", obj.Ip6Address)

return nil
}

func resourceNsxtClusterVirualIPUpdate(d *schema.ResourceData, m interface{}) error {

id := d.Id()
if id == "" {
id = newUUID()
}
connector := getPolicyConnector(m)
client := cluster.NewApiVirtualIpClient(connector)
force := d.Get("force").(string)
ipAddress := d.Get("ip_address").(string)
ipv6Address := d.Get("ipv6_address").(string)
_, err := client.Setvirtualip(&force, &ipv6Address, &ipAddress)
if err != nil {
return fmt.Errorf("Failed to set cluster virtual ip: %s", err)
}
d.SetId(id)
return resourceNsxtClusterVirualIPRead(d, m)
}

func resourceNsxtClusterVirualIPDelete(d *schema.ResourceData, m interface{}) error {
connector := getPolicyConnector(m)
client := cluster.NewApiVirtualIpClient(connector)
_, err := client.Clearvirtualip()
if err != nil {
return fmt.Errorf("Failed to clear cluster virtual IPv4 address: %s", err)
}
_, err = client.Clearvirtualip6()
if err != nil {
return fmt.Errorf("Failed to clear cluster virtual IPv6 address: %s", err)
}
return nil
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6b9b5a8

Please sign in to comment.