1. Packages
  2. Zscaler Internet Access (ZIA)
  3. API Docs
  4. VirtualServiceEdgeNode
Zscaler Internet Access v1.2.0 published on Friday, Feb 20, 2026 by Zscaler
zia logo
Zscaler Internet Access v1.2.0 published on Friday, Feb 20, 2026 by Zscaler

    Use the zia_virtual_service_edge_node resource allows the creation and management of Service Edge Node objects in the Zscaler Internet Access. This resource can then be referenced within a zia.VirtualServiceEdgeCluster resource to create a cluster of Virtual Service Edge nodes.

    Example Usage

    resource "zia_virtual_service_edge_node" "this" {
      name                              = "VSENode01"
      status                            = "ENABLED"
      type                              = "VZEN"
      ip_address                        = "10.0.0.10"
      subnet_mask                       = "255.255.255.0"
      default_gateway                   = "10.0.0.1"
      zgateway_id                       = 12345
      in_production                     = true
      load_balancer_ip_address          = "10.0.0.20"
      deployment_mode                   = "STANDALONE"
      vzen_sku_type                     = "MEDIUM"
    }
    

    Create VirtualServiceEdgeNode Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VirtualServiceEdgeNode(name: string, args?: VirtualServiceEdgeNodeArgs, opts?: CustomResourceOptions);
    @overload
    def VirtualServiceEdgeNode(resource_name: str,
                               args: Optional[VirtualServiceEdgeNodeArgs] = None,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def VirtualServiceEdgeNode(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               cluster_name: Optional[str] = None,
                               default_gateway: Optional[str] = None,
                               deployment_mode: Optional[str] = None,
                               establish_support_tunnel_enabled: Optional[bool] = None,
                               in_production: Optional[bool] = None,
                               ip_address: Optional[str] = None,
                               ip_sec_enabled: Optional[bool] = None,
                               load_balancer_ip_address: Optional[str] = None,
                               name: Optional[str] = None,
                               on_demand_support_tunnel_enabled: Optional[bool] = None,
                               status: Optional[str] = None,
                               subnet_mask: Optional[str] = None,
                               type: Optional[str] = None,
                               vzen_sku_type: Optional[str] = None)
    func NewVirtualServiceEdgeNode(ctx *Context, name string, args *VirtualServiceEdgeNodeArgs, opts ...ResourceOption) (*VirtualServiceEdgeNode, error)
    public VirtualServiceEdgeNode(string name, VirtualServiceEdgeNodeArgs? args = null, CustomResourceOptions? opts = null)
    public VirtualServiceEdgeNode(String name, VirtualServiceEdgeNodeArgs args)
    public VirtualServiceEdgeNode(String name, VirtualServiceEdgeNodeArgs args, CustomResourceOptions options)
    
    type: zia:VirtualServiceEdgeNode
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args VirtualServiceEdgeNodeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VirtualServiceEdgeNodeArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VirtualServiceEdgeNodeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VirtualServiceEdgeNodeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VirtualServiceEdgeNodeArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var virtualServiceEdgeNodeResource = new Zia.VirtualServiceEdgeNode("virtualServiceEdgeNodeResource", new()
    {
        ClusterName = "string",
        DefaultGateway = "string",
        DeploymentMode = "string",
        EstablishSupportTunnelEnabled = false,
        InProduction = false,
        IpAddress = "string",
        IpSecEnabled = false,
        LoadBalancerIpAddress = "string",
        Name = "string",
        OnDemandSupportTunnelEnabled = false,
        Status = "string",
        SubnetMask = "string",
        Type = "string",
        VzenSkuType = "string",
    });
    
    example, err := zia.NewVirtualServiceEdgeNode(ctx, "virtualServiceEdgeNodeResource", &zia.VirtualServiceEdgeNodeArgs{
    	ClusterName:                   pulumi.String("string"),
    	DefaultGateway:                pulumi.String("string"),
    	DeploymentMode:                pulumi.String("string"),
    	EstablishSupportTunnelEnabled: pulumi.Bool(false),
    	InProduction:                  pulumi.Bool(false),
    	IpAddress:                     pulumi.String("string"),
    	IpSecEnabled:                  pulumi.Bool(false),
    	LoadBalancerIpAddress:         pulumi.String("string"),
    	Name:                          pulumi.String("string"),
    	OnDemandSupportTunnelEnabled:  pulumi.Bool(false),
    	Status:                        pulumi.String("string"),
    	SubnetMask:                    pulumi.String("string"),
    	Type:                          pulumi.String("string"),
    	VzenSkuType:                   pulumi.String("string"),
    })
    
    var virtualServiceEdgeNodeResource = new VirtualServiceEdgeNode("virtualServiceEdgeNodeResource", VirtualServiceEdgeNodeArgs.builder()
        .clusterName("string")
        .defaultGateway("string")
        .deploymentMode("string")
        .establishSupportTunnelEnabled(false)
        .inProduction(false)
        .ipAddress("string")
        .ipSecEnabled(false)
        .loadBalancerIpAddress("string")
        .name("string")
        .onDemandSupportTunnelEnabled(false)
        .status("string")
        .subnetMask("string")
        .type("string")
        .vzenSkuType("string")
        .build());
    
    virtual_service_edge_node_resource = zia.VirtualServiceEdgeNode("virtualServiceEdgeNodeResource",
        cluster_name="string",
        default_gateway="string",
        deployment_mode="string",
        establish_support_tunnel_enabled=False,
        in_production=False,
        ip_address="string",
        ip_sec_enabled=False,
        load_balancer_ip_address="string",
        name="string",
        on_demand_support_tunnel_enabled=False,
        status="string",
        subnet_mask="string",
        type="string",
        vzen_sku_type="string")
    
    const virtualServiceEdgeNodeResource = new zia.VirtualServiceEdgeNode("virtualServiceEdgeNodeResource", {
        clusterName: "string",
        defaultGateway: "string",
        deploymentMode: "string",
        establishSupportTunnelEnabled: false,
        inProduction: false,
        ipAddress: "string",
        ipSecEnabled: false,
        loadBalancerIpAddress: "string",
        name: "string",
        onDemandSupportTunnelEnabled: false,
        status: "string",
        subnetMask: "string",
        type: "string",
        vzenSkuType: "string",
    });
    
    type: zia:VirtualServiceEdgeNode
    properties:
        clusterName: string
        defaultGateway: string
        deploymentMode: string
        establishSupportTunnelEnabled: false
        inProduction: false
        ipAddress: string
        ipSecEnabled: false
        loadBalancerIpAddress: string
        name: string
        onDemandSupportTunnelEnabled: false
        status: string
        subnetMask: string
        type: string
        vzenSkuType: string
    

    VirtualServiceEdgeNode Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The VirtualServiceEdgeNode resource accepts the following input properties:

    ClusterName string
    Virtual Service Edge cluster name
    DefaultGateway string
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    DeploymentMode string
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    EstablishSupportTunnelEnabled bool
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    InProduction bool
    Represents the Virtual Service Edge instances deployed for production purposes
    IpAddress string
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    IpSecEnabled bool
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    LoadBalancerIpAddress string
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    Name string
    Name of the Virtual Service Edge node
    OnDemandSupportTunnelEnabled bool
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    Status string
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    SubnetMask string
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    Type string
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    VzenSkuType string
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    ClusterName string
    Virtual Service Edge cluster name
    DefaultGateway string
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    DeploymentMode string
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    EstablishSupportTunnelEnabled bool
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    InProduction bool
    Represents the Virtual Service Edge instances deployed for production purposes
    IpAddress string
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    IpSecEnabled bool
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    LoadBalancerIpAddress string
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    Name string
    Name of the Virtual Service Edge node
    OnDemandSupportTunnelEnabled bool
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    Status string
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    SubnetMask string
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    Type string
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    VzenSkuType string
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    clusterName String
    Virtual Service Edge cluster name
    defaultGateway String
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deploymentMode String
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establishSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    inProduction Boolean
    Represents the Virtual Service Edge instances deployed for production purposes
    ipAddress String
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ipSecEnabled Boolean
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    loadBalancerIpAddress String
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name String
    Name of the Virtual Service Edge node
    onDemandSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status String
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnetMask String
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type String
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzenSkuType String
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    clusterName string
    Virtual Service Edge cluster name
    defaultGateway string
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deploymentMode string
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establishSupportTunnelEnabled boolean
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    inProduction boolean
    Represents the Virtual Service Edge instances deployed for production purposes
    ipAddress string
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ipSecEnabled boolean
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    loadBalancerIpAddress string
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name string
    Name of the Virtual Service Edge node
    onDemandSupportTunnelEnabled boolean
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status string
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnetMask string
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type string
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzenSkuType string
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    cluster_name str
    Virtual Service Edge cluster name
    default_gateway str
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deployment_mode str
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establish_support_tunnel_enabled bool
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    in_production bool
    Represents the Virtual Service Edge instances deployed for production purposes
    ip_address str
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ip_sec_enabled bool
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    load_balancer_ip_address str
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name str
    Name of the Virtual Service Edge node
    on_demand_support_tunnel_enabled bool
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status str
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnet_mask str
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type str
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzen_sku_type str
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    clusterName String
    Virtual Service Edge cluster name
    defaultGateway String
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deploymentMode String
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establishSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    inProduction Boolean
    Represents the Virtual Service Edge instances deployed for production purposes
    ipAddress String
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ipSecEnabled Boolean
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    loadBalancerIpAddress String
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name String
    Name of the Virtual Service Edge node
    onDemandSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status String
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnetMask String
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type String
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzenSkuType String
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VirtualServiceEdgeNode resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    NodeId int
    Id string
    The provider-assigned unique ID for this managed resource.
    NodeId int
    id String
    The provider-assigned unique ID for this managed resource.
    nodeId Integer
    id string
    The provider-assigned unique ID for this managed resource.
    nodeId number
    id str
    The provider-assigned unique ID for this managed resource.
    node_id int
    id String
    The provider-assigned unique ID for this managed resource.
    nodeId Number

    Look up Existing VirtualServiceEdgeNode Resource

    Get an existing VirtualServiceEdgeNode resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: VirtualServiceEdgeNodeState, opts?: CustomResourceOptions): VirtualServiceEdgeNode
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_name: Optional[str] = None,
            default_gateway: Optional[str] = None,
            deployment_mode: Optional[str] = None,
            establish_support_tunnel_enabled: Optional[bool] = None,
            in_production: Optional[bool] = None,
            ip_address: Optional[str] = None,
            ip_sec_enabled: Optional[bool] = None,
            load_balancer_ip_address: Optional[str] = None,
            name: Optional[str] = None,
            node_id: Optional[int] = None,
            on_demand_support_tunnel_enabled: Optional[bool] = None,
            status: Optional[str] = None,
            subnet_mask: Optional[str] = None,
            type: Optional[str] = None,
            vzen_sku_type: Optional[str] = None) -> VirtualServiceEdgeNode
    func GetVirtualServiceEdgeNode(ctx *Context, name string, id IDInput, state *VirtualServiceEdgeNodeState, opts ...ResourceOption) (*VirtualServiceEdgeNode, error)
    public static VirtualServiceEdgeNode Get(string name, Input<string> id, VirtualServiceEdgeNodeState? state, CustomResourceOptions? opts = null)
    public static VirtualServiceEdgeNode get(String name, Output<String> id, VirtualServiceEdgeNodeState state, CustomResourceOptions options)
    resources:  _:    type: zia:VirtualServiceEdgeNode    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ClusterName string
    Virtual Service Edge cluster name
    DefaultGateway string
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    DeploymentMode string
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    EstablishSupportTunnelEnabled bool
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    InProduction bool
    Represents the Virtual Service Edge instances deployed for production purposes
    IpAddress string
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    IpSecEnabled bool
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    LoadBalancerIpAddress string
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    Name string
    Name of the Virtual Service Edge node
    NodeId int
    OnDemandSupportTunnelEnabled bool
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    Status string
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    SubnetMask string
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    Type string
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    VzenSkuType string
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    ClusterName string
    Virtual Service Edge cluster name
    DefaultGateway string
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    DeploymentMode string
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    EstablishSupportTunnelEnabled bool
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    InProduction bool
    Represents the Virtual Service Edge instances deployed for production purposes
    IpAddress string
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    IpSecEnabled bool
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    LoadBalancerIpAddress string
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    Name string
    Name of the Virtual Service Edge node
    NodeId int
    OnDemandSupportTunnelEnabled bool
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    Status string
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    SubnetMask string
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    Type string
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    VzenSkuType string
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    clusterName String
    Virtual Service Edge cluster name
    defaultGateway String
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deploymentMode String
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establishSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    inProduction Boolean
    Represents the Virtual Service Edge instances deployed for production purposes
    ipAddress String
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ipSecEnabled Boolean
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    loadBalancerIpAddress String
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name String
    Name of the Virtual Service Edge node
    nodeId Integer
    onDemandSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status String
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnetMask String
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type String
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzenSkuType String
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    clusterName string
    Virtual Service Edge cluster name
    defaultGateway string
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deploymentMode string
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establishSupportTunnelEnabled boolean
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    inProduction boolean
    Represents the Virtual Service Edge instances deployed for production purposes
    ipAddress string
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ipSecEnabled boolean
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    loadBalancerIpAddress string
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name string
    Name of the Virtual Service Edge node
    nodeId number
    onDemandSupportTunnelEnabled boolean
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status string
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnetMask string
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type string
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzenSkuType string
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    cluster_name str
    Virtual Service Edge cluster name
    default_gateway str
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deployment_mode str
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establish_support_tunnel_enabled bool
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    in_production bool
    Represents the Virtual Service Edge instances deployed for production purposes
    ip_address str
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ip_sec_enabled bool
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    load_balancer_ip_address str
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name str
    Name of the Virtual Service Edge node
    node_id int
    on_demand_support_tunnel_enabled bool
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status str
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnet_mask str
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type str
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzen_sku_type str
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE
    clusterName String
    Virtual Service Edge cluster name
    defaultGateway String
    The IP address of the default gateway to the internet. Note: Only IPv4 addresses are supported
    deploymentMode String
    Specifies the deployment mode. Select either STANDALONE or CLUSTER if you have the VMware ESXi platform. Otherwise, select only STANDALONE
    establishSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not a support tunnel for Zscaler Support is enabled
    inProduction Boolean
    Represents the Virtual Service Edge instances deployed for production purposes
    ipAddress String
    The Virtual Service Edge cluster IP address. Note: Only IPv4 addresses are supported
    ipSecEnabled Boolean
    A Boolean value that specifies whether to terminate IPSec traffic from the client at selected Virtual Service Edge instances for the Virtual Service Edge cluster
    loadBalancerIpAddress String
    The IP address of the load balancer. This field is applicable only when the 'deploymentMode' field is set to CLUSTER. Note: Only IPv4 addresses are supported
    name String
    Name of the Virtual Service Edge node
    nodeId Number
    onDemandSupportTunnelEnabled Boolean
    A Boolean value that indicates whether or not the On-Demand Support Tunnel is enabled
    status String
    Specifies the status of the Virtual Service Edge cluster. The status is set to ENABLED by default
    subnetMask String
    The Virtual Service Edge cluster subnet mask i.e 255.255.255.0
    type String
    The Virtual Service Edge cluster type. For the complete list of supported types refer to the ZIA API documentation.
    vzenSkuType String
    The Virtual Service Edge SKU type. Supported Values: SMALL, MEDIUM, LARGE

    Import

    Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language. Visit

    zia_virtual_service_edge_node can be imported by using <NODE_ID> or <NODE_NAME> as the import ID.

    For example:

    $ pulumi import zia:index/virtualServiceEdgeNode:VirtualServiceEdgeNode example <node_id>
    

    or

    $ pulumi import zia:index/virtualServiceEdgeNode:VirtualServiceEdgeNode example <node_name>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    zia zscaler/pulumi-zia
    License
    MIT
    Notes
    This Pulumi package is based on the zia Terraform Provider.
    zia logo
    Zscaler Internet Access v1.2.0 published on Friday, Feb 20, 2026 by Zscaler
      Meet Neo: Your AI Platform Teammate