1. Packages
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. PolicyTransitGatewayIpsecVpnLocalEndpoint
Viewing docs for nsxt 3.12.0
published on Monday, May 18, 2026 by vmware
Viewing docs for nsxt 3.12.0
published on Monday, May 18, 2026 by vmware

    Create PolicyTransitGatewayIpsecVpnLocalEndpoint Resource

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

    Constructor syntax

    new PolicyTransitGatewayIpsecVpnLocalEndpoint(name: string, args: PolicyTransitGatewayIpsecVpnLocalEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyTransitGatewayIpsecVpnLocalEndpoint(resource_name: str,
                                                  args: PolicyTransitGatewayIpsecVpnLocalEndpointArgs,
                                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyTransitGatewayIpsecVpnLocalEndpoint(resource_name: str,
                                                  opts: Optional[ResourceOptions] = None,
                                                  display_name: Optional[str] = None,
                                                  local_address: Optional[str] = None,
                                                  parent_path: Optional[str] = None,
                                                  certificate_path: Optional[str] = None,
                                                  description: Optional[str] = None,
                                                  local_id: Optional[str] = None,
                                                  nsx_id: Optional[str] = None,
                                                  policy_transit_gateway_ipsec_vpn_local_endpoint_id: Optional[str] = None,
                                                  tags: Optional[Sequence[PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs]] = None,
                                                  trust_ca_paths: Optional[Sequence[str]] = None,
                                                  trust_crl_paths: Optional[Sequence[str]] = None)
    func NewPolicyTransitGatewayIpsecVpnLocalEndpoint(ctx *Context, name string, args PolicyTransitGatewayIpsecVpnLocalEndpointArgs, opts ...ResourceOption) (*PolicyTransitGatewayIpsecVpnLocalEndpoint, error)
    public PolicyTransitGatewayIpsecVpnLocalEndpoint(string name, PolicyTransitGatewayIpsecVpnLocalEndpointArgs args, CustomResourceOptions? opts = null)
    public PolicyTransitGatewayIpsecVpnLocalEndpoint(String name, PolicyTransitGatewayIpsecVpnLocalEndpointArgs args)
    public PolicyTransitGatewayIpsecVpnLocalEndpoint(String name, PolicyTransitGatewayIpsecVpnLocalEndpointArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyTransitGatewayIpsecVpnLocalEndpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "nsxt_policytransitgatewayipsecvpnlocalendpoint" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PolicyTransitGatewayIpsecVpnLocalEndpointArgs
    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 PolicyTransitGatewayIpsecVpnLocalEndpointArgs
    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 PolicyTransitGatewayIpsecVpnLocalEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyTransitGatewayIpsecVpnLocalEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyTransitGatewayIpsecVpnLocalEndpointArgs
    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 policyTransitGatewayIpsecVpnLocalEndpointResource = new Nsxt.PolicyTransitGatewayIpsecVpnLocalEndpoint("policyTransitGatewayIpsecVpnLocalEndpointResource", new()
    {
        DisplayName = "string",
        LocalAddress = "string",
        ParentPath = "string",
        CertificatePath = "string",
        Description = "string",
        LocalId = "string",
        NsxId = "string",
        PolicyTransitGatewayIpsecVpnLocalEndpointId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        TrustCaPaths = new[]
        {
            "string",
        },
        TrustCrlPaths = new[]
        {
            "string",
        },
    });
    
    example, err := nsxt.NewPolicyTransitGatewayIpsecVpnLocalEndpoint(ctx, "policyTransitGatewayIpsecVpnLocalEndpointResource", &nsxt.PolicyTransitGatewayIpsecVpnLocalEndpointArgs{
    	DisplayName:     pulumi.String("string"),
    	LocalAddress:    pulumi.String("string"),
    	ParentPath:      pulumi.String("string"),
    	CertificatePath: pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	LocalId:         pulumi.String("string"),
    	NsxId:           pulumi.String("string"),
    	PolicyTransitGatewayIpsecVpnLocalEndpointId: pulumi.String("string"),
    	Tags: nsxt.PolicyTransitGatewayIpsecVpnLocalEndpointTagArray{
    		&nsxt.PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	TrustCaPaths: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TrustCrlPaths: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    resource "nsxt_policytransitgatewayipsecvpnlocalendpoint" "policyTransitGatewayIpsecVpnLocalEndpointResource" {
      display_name                                       = "string"
      local_address                                      = "string"
      parent_path                                        = "string"
      certificate_path                                   = "string"
      description                                        = "string"
      local_id                                           = "string"
      nsx_id                                             = "string"
      policy_transit_gateway_ipsec_vpn_local_endpoint_id = "string"
      tags {
        scope = "string"
        tag   = "string"
      }
      trust_ca_paths  = ["string"]
      trust_crl_paths = ["string"]
    }
    
    var policyTransitGatewayIpsecVpnLocalEndpointResource = new PolicyTransitGatewayIpsecVpnLocalEndpoint("policyTransitGatewayIpsecVpnLocalEndpointResource", PolicyTransitGatewayIpsecVpnLocalEndpointArgs.builder()
        .displayName("string")
        .localAddress("string")
        .parentPath("string")
        .certificatePath("string")
        .description("string")
        .localId("string")
        .nsxId("string")
        .policyTransitGatewayIpsecVpnLocalEndpointId("string")
        .tags(PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .trustCaPaths("string")
        .trustCrlPaths("string")
        .build());
    
    policy_transit_gateway_ipsec_vpn_local_endpoint_resource = nsxt.PolicyTransitGatewayIpsecVpnLocalEndpoint("policyTransitGatewayIpsecVpnLocalEndpointResource",
        display_name="string",
        local_address="string",
        parent_path="string",
        certificate_path="string",
        description="string",
        local_id="string",
        nsx_id="string",
        policy_transit_gateway_ipsec_vpn_local_endpoint_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        trust_ca_paths=["string"],
        trust_crl_paths=["string"])
    
    const policyTransitGatewayIpsecVpnLocalEndpointResource = new nsxt.PolicyTransitGatewayIpsecVpnLocalEndpoint("policyTransitGatewayIpsecVpnLocalEndpointResource", {
        displayName: "string",
        localAddress: "string",
        parentPath: "string",
        certificatePath: "string",
        description: "string",
        localId: "string",
        nsxId: "string",
        policyTransitGatewayIpsecVpnLocalEndpointId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
        trustCaPaths: ["string"],
        trustCrlPaths: ["string"],
    });
    
    type: nsxt:PolicyTransitGatewayIpsecVpnLocalEndpoint
    properties:
        certificatePath: string
        description: string
        displayName: string
        localAddress: string
        localId: string
        nsxId: string
        parentPath: string
        policyTransitGatewayIpsecVpnLocalEndpointId: string
        tags:
            - scope: string
              tag: string
        trustCaPaths:
            - string
        trustCrlPaths:
            - string
    

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

    DisplayName string
    Display name of the resource.
    LocalAddress string
    Local IPv4/v6 IP address.
    ParentPath string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    CertificatePath string
    Policy path referencing site certificate.
    Description string
    Description of the resource.
    LocalId string
    Local id for the local endpoint.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyTransitGatewayIpsecVpnLocalEndpointId string
    ID of the resource.
    Tags List<PolicyTransitGatewayIpsecVpnLocalEndpointTag>
    A list of scope + tag pairs to associate with this resource.
    TrustCaPaths List<string>
    List of trust ca certificate paths.
    TrustCrlPaths List<string>
    List of trust CRL paths.
    DisplayName string
    Display name of the resource.
    LocalAddress string
    Local IPv4/v6 IP address.
    ParentPath string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    CertificatePath string
    Policy path referencing site certificate.
    Description string
    Description of the resource.
    LocalId string
    Local id for the local endpoint.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyTransitGatewayIpsecVpnLocalEndpointId string
    ID of the resource.
    Tags []PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs
    A list of scope + tag pairs to associate with this resource.
    TrustCaPaths []string
    List of trust ca certificate paths.
    TrustCrlPaths []string
    List of trust CRL paths.
    display_name string
    Display name of the resource.
    local_address string
    Local IPv4/v6 IP address.
    parent_path string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    certificate_path string
    Policy path referencing site certificate.
    description string
    Description of the resource.
    local_id string
    Local id for the local endpoint.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_transit_gateway_ipsec_vpn_local_endpoint_id string
    ID of the resource.
    tags list(object)
    A list of scope + tag pairs to associate with this resource.
    trust_ca_paths list(string)
    List of trust ca certificate paths.
    trust_crl_paths list(string)
    List of trust CRL paths.
    displayName String
    Display name of the resource.
    localAddress String
    Local IPv4/v6 IP address.
    parentPath String
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    certificatePath String
    Policy path referencing site certificate.
    description String
    Description of the resource.
    localId String
    Local id for the local endpoint.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyTransitGatewayIpsecVpnLocalEndpointId String
    ID of the resource.
    tags List<PolicyTransitGatewayIpsecVpnLocalEndpointTag>
    A list of scope + tag pairs to associate with this resource.
    trustCaPaths List<String>
    List of trust ca certificate paths.
    trustCrlPaths List<String>
    List of trust CRL paths.
    displayName string
    Display name of the resource.
    localAddress string
    Local IPv4/v6 IP address.
    parentPath string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    certificatePath string
    Policy path referencing site certificate.
    description string
    Description of the resource.
    localId string
    Local id for the local endpoint.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyTransitGatewayIpsecVpnLocalEndpointId string
    ID of the resource.
    tags PolicyTransitGatewayIpsecVpnLocalEndpointTag[]
    A list of scope + tag pairs to associate with this resource.
    trustCaPaths string[]
    List of trust ca certificate paths.
    trustCrlPaths string[]
    List of trust CRL paths.
    display_name str
    Display name of the resource.
    local_address str
    Local IPv4/v6 IP address.
    parent_path str
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    certificate_path str
    Policy path referencing site certificate.
    description str
    Description of the resource.
    local_id str
    Local id for the local endpoint.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_transit_gateway_ipsec_vpn_local_endpoint_id str
    ID of the resource.
    tags Sequence[PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs]
    A list of scope + tag pairs to associate with this resource.
    trust_ca_paths Sequence[str]
    List of trust ca certificate paths.
    trust_crl_paths Sequence[str]
    List of trust CRL paths.
    displayName String
    Display name of the resource.
    localAddress String
    Local IPv4/v6 IP address.
    parentPath String
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    certificatePath String
    Policy path referencing site certificate.
    description String
    Description of the resource.
    localId String
    Local id for the local endpoint.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyTransitGatewayIpsecVpnLocalEndpointId String
    ID of the resource.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    trustCaPaths List<String>
    List of trust ca certificate paths.
    trustCrlPaths List<String>
    List of trust CRL paths.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyTransitGatewayIpsecVpnLocalEndpoint 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 number
    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 PolicyTransitGatewayIpsecVpnLocalEndpoint Resource

    Get an existing PolicyTransitGatewayIpsecVpnLocalEndpoint 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?: PolicyTransitGatewayIpsecVpnLocalEndpointState, opts?: CustomResourceOptions): PolicyTransitGatewayIpsecVpnLocalEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            certificate_path: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            local_address: Optional[str] = None,
            local_id: Optional[str] = None,
            nsx_id: Optional[str] = None,
            parent_path: Optional[str] = None,
            path: Optional[str] = None,
            policy_transit_gateway_ipsec_vpn_local_endpoint_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs]] = None,
            trust_ca_paths: Optional[Sequence[str]] = None,
            trust_crl_paths: Optional[Sequence[str]] = None) -> PolicyTransitGatewayIpsecVpnLocalEndpoint
    func GetPolicyTransitGatewayIpsecVpnLocalEndpoint(ctx *Context, name string, id IDInput, state *PolicyTransitGatewayIpsecVpnLocalEndpointState, opts ...ResourceOption) (*PolicyTransitGatewayIpsecVpnLocalEndpoint, error)
    public static PolicyTransitGatewayIpsecVpnLocalEndpoint Get(string name, Input<string> id, PolicyTransitGatewayIpsecVpnLocalEndpointState? state, CustomResourceOptions? opts = null)
    public static PolicyTransitGatewayIpsecVpnLocalEndpoint get(String name, Output<String> id, PolicyTransitGatewayIpsecVpnLocalEndpointState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyTransitGatewayIpsecVpnLocalEndpoint    get:      id: ${id}
    import {
      to = nsxt_policytransitgatewayipsecvpnlocalendpoint.example
      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:
    CertificatePath string
    Policy path referencing site certificate.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    LocalAddress string
    Local IPv4/v6 IP address.
    LocalId string
    Local id for the local endpoint.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    ParentPath string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    Path string
    The NSX path of the policy resource.
    PolicyTransitGatewayIpsecVpnLocalEndpointId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<PolicyTransitGatewayIpsecVpnLocalEndpointTag>
    A list of scope + tag pairs to associate with this resource.
    TrustCaPaths List<string>
    List of trust ca certificate paths.
    TrustCrlPaths List<string>
    List of trust CRL paths.
    CertificatePath string
    Policy path referencing site certificate.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    LocalAddress string
    Local IPv4/v6 IP address.
    LocalId string
    Local id for the local endpoint.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    ParentPath string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    Path string
    The NSX path of the policy resource.
    PolicyTransitGatewayIpsecVpnLocalEndpointId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs
    A list of scope + tag pairs to associate with this resource.
    TrustCaPaths []string
    List of trust ca certificate paths.
    TrustCrlPaths []string
    List of trust CRL paths.
    certificate_path string
    Policy path referencing site certificate.
    description string
    Description of the resource.
    display_name string
    Display name of the resource.
    local_address string
    Local IPv4/v6 IP address.
    local_id string
    Local id for the local endpoint.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parent_path string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    path string
    The NSX path of the policy resource.
    policy_transit_gateway_ipsec_vpn_local_endpoint_id string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags list(object)
    A list of scope + tag pairs to associate with this resource.
    trust_ca_paths list(string)
    List of trust ca certificate paths.
    trust_crl_paths list(string)
    List of trust CRL paths.
    certificatePath String
    Policy path referencing site certificate.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    localAddress String
    Local IPv4/v6 IP address.
    localId String
    Local id for the local endpoint.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parentPath String
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    path String
    The NSX path of the policy resource.
    policyTransitGatewayIpsecVpnLocalEndpointId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<PolicyTransitGatewayIpsecVpnLocalEndpointTag>
    A list of scope + tag pairs to associate with this resource.
    trustCaPaths List<String>
    List of trust ca certificate paths.
    trustCrlPaths List<String>
    List of trust CRL paths.
    certificatePath string
    Policy path referencing site certificate.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    localAddress string
    Local IPv4/v6 IP address.
    localId string
    Local id for the local endpoint.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parentPath string
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    path string
    The NSX path of the policy resource.
    policyTransitGatewayIpsecVpnLocalEndpointId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicyTransitGatewayIpsecVpnLocalEndpointTag[]
    A list of scope + tag pairs to associate with this resource.
    trustCaPaths string[]
    List of trust ca certificate paths.
    trustCrlPaths string[]
    List of trust CRL paths.
    certificate_path str
    Policy path referencing site certificate.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    local_address str
    Local IPv4/v6 IP address.
    local_id str
    Local id for the local endpoint.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parent_path str
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    path str
    The NSX path of the policy resource.
    policy_transit_gateway_ipsec_vpn_local_endpoint_id str
    ID of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs]
    A list of scope + tag pairs to associate with this resource.
    trust_ca_paths Sequence[str]
    List of trust ca certificate paths.
    trust_crl_paths Sequence[str]
    List of trust CRL paths.
    certificatePath String
    Policy path referencing site certificate.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    localAddress String
    Local IPv4/v6 IP address.
    localId String
    Local id for the local endpoint.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parentPath String
    Path of parent object. VPN is supported only on Centralized Transit Gateway and requires ACTIVE-STANDBY HA mode.
    path String
    The NSX path of the policy resource.
    policyTransitGatewayIpsecVpnLocalEndpointId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    trustCaPaths List<String>
    List of trust ca certificate paths.
    trustCrlPaths List<String>
    List of trust CRL paths.

    Supporting Types

    PolicyTransitGatewayIpsecVpnLocalEndpointTag, PolicyTransitGatewayIpsecVpnLocalEndpointTagArgs

    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 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.
    Viewing docs for nsxt 3.12.0
    published on Monday, May 18, 2026 by vmware

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial