1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyEdgeCluster
nsxt 3.9.0 published on Friday, Jun 20, 2025 by vmware

nsxt.PolicyEdgeCluster

Explore with Pulumi AI

nsxt logo
nsxt 3.9.0 published on Friday, Jun 20, 2025 by vmware

    Create PolicyEdgeCluster Resource

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

    Constructor syntax

    new PolicyEdgeCluster(name: string, args: PolicyEdgeClusterArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyEdgeCluster(resource_name: str,
                          args: PolicyEdgeClusterArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyEdgeCluster(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          display_name: Optional[str] = None,
                          edge_cluster_profile_path: Optional[str] = None,
                          allocation_rules: Optional[Sequence[PolicyEdgeClusterAllocationRuleArgs]] = None,
                          description: Optional[str] = None,
                          enforcement_point: Optional[str] = None,
                          inter_site_forwarding_enabled: Optional[bool] = None,
                          nsx_id: Optional[str] = None,
                          password_managed_by_vcf: Optional[bool] = None,
                          policy_edge_cluster_id: Optional[str] = None,
                          policy_edge_nodes: Optional[Sequence[PolicyEdgeClusterPolicyEdgeNodeArgs]] = None,
                          site_path: Optional[str] = None,
                          tags: Optional[Sequence[PolicyEdgeClusterTagArgs]] = None)
    func NewPolicyEdgeCluster(ctx *Context, name string, args PolicyEdgeClusterArgs, opts ...ResourceOption) (*PolicyEdgeCluster, error)
    public PolicyEdgeCluster(string name, PolicyEdgeClusterArgs args, CustomResourceOptions? opts = null)
    public PolicyEdgeCluster(String name, PolicyEdgeClusterArgs args)
    public PolicyEdgeCluster(String name, PolicyEdgeClusterArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyEdgeCluster
    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 PolicyEdgeClusterArgs
    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 PolicyEdgeClusterArgs
    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 PolicyEdgeClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyEdgeClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyEdgeClusterArgs
    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 policyEdgeClusterResource = new Nsxt.PolicyEdgeCluster("policyEdgeClusterResource", new()
    {
        DisplayName = "string",
        EdgeClusterProfilePath = "string",
        AllocationRules = new[]
        {
            new Nsxt.Inputs.PolicyEdgeClusterAllocationRuleArgs
            {
                ActionBasedOnFailureDomainEnabled = false,
            },
        },
        Description = "string",
        EnforcementPoint = "string",
        InterSiteForwardingEnabled = false,
        NsxId = "string",
        PasswordManagedByVcf = false,
        PolicyEdgeClusterId = "string",
        PolicyEdgeNodes = new[]
        {
            new Nsxt.Inputs.PolicyEdgeClusterPolicyEdgeNodeArgs
            {
                EdgeTransportNodePath = "string",
                Id = "string",
            },
        },
        SitePath = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyEdgeClusterTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyEdgeCluster(ctx, "policyEdgeClusterResource", &nsxt.PolicyEdgeClusterArgs{
    	DisplayName:            pulumi.String("string"),
    	EdgeClusterProfilePath: pulumi.String("string"),
    	AllocationRules: nsxt.PolicyEdgeClusterAllocationRuleArray{
    		&nsxt.PolicyEdgeClusterAllocationRuleArgs{
    			ActionBasedOnFailureDomainEnabled: pulumi.Bool(false),
    		},
    	},
    	Description:                pulumi.String("string"),
    	EnforcementPoint:           pulumi.String("string"),
    	InterSiteForwardingEnabled: pulumi.Bool(false),
    	NsxId:                      pulumi.String("string"),
    	PasswordManagedByVcf:       pulumi.Bool(false),
    	PolicyEdgeClusterId:        pulumi.String("string"),
    	PolicyEdgeNodes: nsxt.PolicyEdgeClusterPolicyEdgeNodeArray{
    		&nsxt.PolicyEdgeClusterPolicyEdgeNodeArgs{
    			EdgeTransportNodePath: pulumi.String("string"),
    			Id:                    pulumi.String("string"),
    		},
    	},
    	SitePath: pulumi.String("string"),
    	Tags: nsxt.PolicyEdgeClusterTagArray{
    		&nsxt.PolicyEdgeClusterTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyEdgeClusterResource = new PolicyEdgeCluster("policyEdgeClusterResource", PolicyEdgeClusterArgs.builder()
        .displayName("string")
        .edgeClusterProfilePath("string")
        .allocationRules(PolicyEdgeClusterAllocationRuleArgs.builder()
            .actionBasedOnFailureDomainEnabled(false)
            .build())
        .description("string")
        .enforcementPoint("string")
        .interSiteForwardingEnabled(false)
        .nsxId("string")
        .passwordManagedByVcf(false)
        .policyEdgeClusterId("string")
        .policyEdgeNodes(PolicyEdgeClusterPolicyEdgeNodeArgs.builder()
            .edgeTransportNodePath("string")
            .id("string")
            .build())
        .sitePath("string")
        .tags(PolicyEdgeClusterTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_edge_cluster_resource = nsxt.PolicyEdgeCluster("policyEdgeClusterResource",
        display_name="string",
        edge_cluster_profile_path="string",
        allocation_rules=[{
            "action_based_on_failure_domain_enabled": False,
        }],
        description="string",
        enforcement_point="string",
        inter_site_forwarding_enabled=False,
        nsx_id="string",
        password_managed_by_vcf=False,
        policy_edge_cluster_id="string",
        policy_edge_nodes=[{
            "edge_transport_node_path": "string",
            "id": "string",
        }],
        site_path="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyEdgeClusterResource = new nsxt.PolicyEdgeCluster("policyEdgeClusterResource", {
        displayName: "string",
        edgeClusterProfilePath: "string",
        allocationRules: [{
            actionBasedOnFailureDomainEnabled: false,
        }],
        description: "string",
        enforcementPoint: "string",
        interSiteForwardingEnabled: false,
        nsxId: "string",
        passwordManagedByVcf: false,
        policyEdgeClusterId: "string",
        policyEdgeNodes: [{
            edgeTransportNodePath: "string",
            id: "string",
        }],
        sitePath: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyEdgeCluster
    properties:
        allocationRules:
            - actionBasedOnFailureDomainEnabled: false
        description: string
        displayName: string
        edgeClusterProfilePath: string
        enforcementPoint: string
        interSiteForwardingEnabled: false
        nsxId: string
        passwordManagedByVcf: false
        policyEdgeClusterId: string
        policyEdgeNodes:
            - edgeTransportNodePath: string
              id: string
        sitePath: string
        tags:
            - scope: string
              tag: string
    

    PolicyEdgeCluster 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 PolicyEdgeCluster resource accepts the following input properties:

    DisplayName string
    Display name of the resource.
    EdgeClusterProfilePath string
    Path of edge cluster high availability profile.
    AllocationRules List<PolicyEdgeClusterAllocationRule>
    Allocation rules for auto placement.
    Description string
    Description of the resource.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    InterSiteForwardingEnabled bool
    Inter site forwarding is enabled if true.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PasswordManagedByVcf bool
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    PolicyEdgeClusterId string
    ID of the resource.
    PolicyEdgeNodes List<PolicyEdgeClusterPolicyEdgeNode>
    Policy Edge Cluster Member.
    SitePath string
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    Tags List<PolicyEdgeClusterTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    EdgeClusterProfilePath string
    Path of edge cluster high availability profile.
    AllocationRules []PolicyEdgeClusterAllocationRuleArgs
    Allocation rules for auto placement.
    Description string
    Description of the resource.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    InterSiteForwardingEnabled bool
    Inter site forwarding is enabled if true.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PasswordManagedByVcf bool
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    PolicyEdgeClusterId string
    ID of the resource.
    PolicyEdgeNodes []PolicyEdgeClusterPolicyEdgeNodeArgs
    Policy Edge Cluster Member.
    SitePath string
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    Tags []PolicyEdgeClusterTagArgs
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    edgeClusterProfilePath String
    Path of edge cluster high availability profile.
    allocationRules List<PolicyEdgeClusterAllocationRule>
    Allocation rules for auto placement.
    description String
    Description of the resource.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    interSiteForwardingEnabled Boolean
    Inter site forwarding is enabled if true.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    passwordManagedByVcf Boolean
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    policyEdgeClusterId String
    ID of the resource.
    policyEdgeNodes List<PolicyEdgeClusterPolicyEdgeNode>
    Policy Edge Cluster Member.
    sitePath String
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags List<PolicyEdgeClusterTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    edgeClusterProfilePath string
    Path of edge cluster high availability profile.
    allocationRules PolicyEdgeClusterAllocationRule[]
    Allocation rules for auto placement.
    description string
    Description of the resource.
    enforcementPoint string
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    interSiteForwardingEnabled boolean
    Inter site forwarding is enabled if true.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    passwordManagedByVcf boolean
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    policyEdgeClusterId string
    ID of the resource.
    policyEdgeNodes PolicyEdgeClusterPolicyEdgeNode[]
    Policy Edge Cluster Member.
    sitePath string
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags PolicyEdgeClusterTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    edge_cluster_profile_path str
    Path of edge cluster high availability profile.
    allocation_rules Sequence[PolicyEdgeClusterAllocationRuleArgs]
    Allocation rules for auto placement.
    description str
    Description of the resource.
    enforcement_point str
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    inter_site_forwarding_enabled bool
    Inter site forwarding is enabled if true.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    password_managed_by_vcf bool
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    policy_edge_cluster_id str
    ID of the resource.
    policy_edge_nodes Sequence[PolicyEdgeClusterPolicyEdgeNodeArgs]
    Policy Edge Cluster Member.
    site_path str
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags Sequence[PolicyEdgeClusterTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    edgeClusterProfilePath String
    Path of edge cluster high availability profile.
    allocationRules List<Property Map>
    Allocation rules for auto placement.
    description String
    Description of the resource.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    interSiteForwardingEnabled Boolean
    Inter site forwarding is enabled if true.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    passwordManagedByVcf Boolean
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    policyEdgeClusterId String
    ID of the resource.
    policyEdgeNodes List<Property Map>
    Policy Edge Cluster Member.
    sitePath String
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyEdgeCluster Resource

    Get an existing PolicyEdgeCluster 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?: PolicyEdgeClusterState, opts?: CustomResourceOptions): PolicyEdgeCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allocation_rules: Optional[Sequence[PolicyEdgeClusterAllocationRuleArgs]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            edge_cluster_profile_path: Optional[str] = None,
            enforcement_point: Optional[str] = None,
            inter_site_forwarding_enabled: Optional[bool] = None,
            nsx_id: Optional[str] = None,
            password_managed_by_vcf: Optional[bool] = None,
            path: Optional[str] = None,
            policy_edge_cluster_id: Optional[str] = None,
            policy_edge_nodes: Optional[Sequence[PolicyEdgeClusterPolicyEdgeNodeArgs]] = None,
            revision: Optional[float] = None,
            site_path: Optional[str] = None,
            tags: Optional[Sequence[PolicyEdgeClusterTagArgs]] = None) -> PolicyEdgeCluster
    func GetPolicyEdgeCluster(ctx *Context, name string, id IDInput, state *PolicyEdgeClusterState, opts ...ResourceOption) (*PolicyEdgeCluster, error)
    public static PolicyEdgeCluster Get(string name, Input<string> id, PolicyEdgeClusterState? state, CustomResourceOptions? opts = null)
    public static PolicyEdgeCluster get(String name, Output<String> id, PolicyEdgeClusterState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyEdgeCluster    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:
    AllocationRules List<PolicyEdgeClusterAllocationRule>
    Allocation rules for auto placement.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    EdgeClusterProfilePath string
    Path of edge cluster high availability profile.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    InterSiteForwardingEnabled bool
    Inter site forwarding is enabled if true.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PasswordManagedByVcf bool
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    Path string
    The NSX path of the policy resource.
    PolicyEdgeClusterId string
    ID of the resource.
    PolicyEdgeNodes List<PolicyEdgeClusterPolicyEdgeNode>
    Policy Edge Cluster Member.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SitePath string
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    Tags List<PolicyEdgeClusterTag>
    A list of scope + tag pairs to associate with this resource.
    AllocationRules []PolicyEdgeClusterAllocationRuleArgs
    Allocation rules for auto placement.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    EdgeClusterProfilePath string
    Path of edge cluster high availability profile.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    InterSiteForwardingEnabled bool
    Inter site forwarding is enabled if true.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PasswordManagedByVcf bool
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    Path string
    The NSX path of the policy resource.
    PolicyEdgeClusterId string
    ID of the resource.
    PolicyEdgeNodes []PolicyEdgeClusterPolicyEdgeNodeArgs
    Policy Edge Cluster Member.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SitePath string
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    Tags []PolicyEdgeClusterTagArgs
    A list of scope + tag pairs to associate with this resource.
    allocationRules List<PolicyEdgeClusterAllocationRule>
    Allocation rules for auto placement.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    edgeClusterProfilePath String
    Path of edge cluster high availability profile.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    interSiteForwardingEnabled Boolean
    Inter site forwarding is enabled if true.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    passwordManagedByVcf Boolean
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    path String
    The NSX path of the policy resource.
    policyEdgeClusterId String
    ID of the resource.
    policyEdgeNodes List<PolicyEdgeClusterPolicyEdgeNode>
    Policy Edge Cluster Member.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath String
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags List<PolicyEdgeClusterTag>
    A list of scope + tag pairs to associate with this resource.
    allocationRules PolicyEdgeClusterAllocationRule[]
    Allocation rules for auto placement.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    edgeClusterProfilePath string
    Path of edge cluster high availability profile.
    enforcementPoint string
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    interSiteForwardingEnabled boolean
    Inter site forwarding is enabled if true.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    passwordManagedByVcf boolean
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    path string
    The NSX path of the policy resource.
    policyEdgeClusterId string
    ID of the resource.
    policyEdgeNodes PolicyEdgeClusterPolicyEdgeNode[]
    Policy Edge Cluster Member.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath string
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags PolicyEdgeClusterTag[]
    A list of scope + tag pairs to associate with this resource.
    allocation_rules Sequence[PolicyEdgeClusterAllocationRuleArgs]
    Allocation rules for auto placement.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    edge_cluster_profile_path str
    Path of edge cluster high availability profile.
    enforcement_point str
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    inter_site_forwarding_enabled bool
    Inter site forwarding is enabled if true.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    password_managed_by_vcf bool
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    path str
    The NSX path of the policy resource.
    policy_edge_cluster_id str
    ID of the resource.
    policy_edge_nodes Sequence[PolicyEdgeClusterPolicyEdgeNodeArgs]
    Policy Edge Cluster Member.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    site_path str
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags Sequence[PolicyEdgeClusterTagArgs]
    A list of scope + tag pairs to associate with this resource.
    allocationRules List<Property Map>
    Allocation rules for auto placement.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    edgeClusterProfilePath String
    Path of edge cluster high availability profile.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Host Transport Node. Defaults to default enforcement point.
    interSiteForwardingEnabled Boolean
    Inter site forwarding is enabled if true.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    passwordManagedByVcf Boolean
    Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
    path String
    The NSX path of the policy resource.
    policyEdgeClusterId String
    ID of the resource.
    policyEdgeNodes List<Property Map>
    Policy Edge Cluster Member.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath String
    The path of the site which the Host Transport Node belongs to. path field of the existing nsxt.PolicySite can be used here. Defaults to default site path.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicyEdgeClusterAllocationRule, PolicyEdgeClusterAllocationRuleArgs

    ActionBasedOnFailureDomainEnabled bool
    Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
    ActionBasedOnFailureDomainEnabled bool
    Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
    actionBasedOnFailureDomainEnabled Boolean
    Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
    actionBasedOnFailureDomainEnabled boolean
    Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
    action_based_on_failure_domain_enabled bool
    Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
    actionBasedOnFailureDomainEnabled Boolean
    Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.

    PolicyEdgeClusterPolicyEdgeNode, PolicyEdgeClusterPolicyEdgeNodeArgs

    EdgeTransportNodePath string
    Edge Transport Node Path.
    Id string
    ID of PolicyEdgeNode.
    EdgeTransportNodePath string
    Edge Transport Node Path.
    Id string
    ID of PolicyEdgeNode.
    edgeTransportNodePath String
    Edge Transport Node Path.
    id String
    ID of PolicyEdgeNode.
    edgeTransportNodePath string
    Edge Transport Node Path.
    id string
    ID of PolicyEdgeNode.
    edge_transport_node_path str
    Edge Transport Node Path.
    id str
    ID of PolicyEdgeNode.
    edgeTransportNodePath String
    Edge Transport Node Path.
    id String
    ID of PolicyEdgeNode.

    PolicyEdgeClusterTag, PolicyEdgeClusterTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope str
    tag str
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.9.0 published on Friday, Jun 20, 2025 by vmware