1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyIpsecVpnService
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyIpsecVpnService

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create PolicyIpsecVpnService Resource

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

    Constructor syntax

    new PolicyIpsecVpnService(name: string, args: PolicyIpsecVpnServiceArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyIpsecVpnService(resource_name: str,
                              args: PolicyIpsecVpnServiceArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyIpsecVpnService(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              display_name: Optional[str] = None,
                              bypass_rules: Optional[Sequence[PolicyIpsecVpnServiceBypassRuleArgs]] = None,
                              description: Optional[str] = None,
                              enabled: Optional[bool] = None,
                              gateway_path: Optional[str] = None,
                              ha_sync: Optional[bool] = None,
                              ike_log_level: Optional[str] = None,
                              locale_service_path: Optional[str] = None,
                              nsx_id: Optional[str] = None,
                              policy_ipsec_vpn_service_id: Optional[str] = None,
                              tags: Optional[Sequence[PolicyIpsecVpnServiceTagArgs]] = None)
    func NewPolicyIpsecVpnService(ctx *Context, name string, args PolicyIpsecVpnServiceArgs, opts ...ResourceOption) (*PolicyIpsecVpnService, error)
    public PolicyIpsecVpnService(string name, PolicyIpsecVpnServiceArgs args, CustomResourceOptions? opts = null)
    public PolicyIpsecVpnService(String name, PolicyIpsecVpnServiceArgs args)
    public PolicyIpsecVpnService(String name, PolicyIpsecVpnServiceArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyIpsecVpnService
    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 PolicyIpsecVpnServiceArgs
    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 PolicyIpsecVpnServiceArgs
    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 PolicyIpsecVpnServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyIpsecVpnServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyIpsecVpnServiceArgs
    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 policyIpsecVpnServiceResource = new Nsxt.PolicyIpsecVpnService("policyIpsecVpnServiceResource", new()
    {
        DisplayName = "string",
        BypassRules = new[]
        {
            new Nsxt.Inputs.PolicyIpsecVpnServiceBypassRuleArgs
            {
                Action = "string",
                Destinations = new[]
                {
                    "string",
                },
                NsxId = "string",
                Sources = new[]
                {
                    "string",
                },
            },
        },
        Description = "string",
        Enabled = false,
        GatewayPath = "string",
        HaSync = false,
        IkeLogLevel = "string",
        NsxId = "string",
        PolicyIpsecVpnServiceId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyIpsecVpnServiceTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyIpsecVpnService(ctx, "policyIpsecVpnServiceResource", &nsxt.PolicyIpsecVpnServiceArgs{
    	DisplayName: pulumi.String("string"),
    	BypassRules: nsxt.PolicyIpsecVpnServiceBypassRuleArray{
    		&nsxt.PolicyIpsecVpnServiceBypassRuleArgs{
    			Action: pulumi.String("string"),
    			Destinations: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			NsxId: pulumi.String("string"),
    			Sources: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Description:             pulumi.String("string"),
    	Enabled:                 pulumi.Bool(false),
    	GatewayPath:             pulumi.String("string"),
    	HaSync:                  pulumi.Bool(false),
    	IkeLogLevel:             pulumi.String("string"),
    	NsxId:                   pulumi.String("string"),
    	PolicyIpsecVpnServiceId: pulumi.String("string"),
    	Tags: nsxt.PolicyIpsecVpnServiceTagArray{
    		&nsxt.PolicyIpsecVpnServiceTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyIpsecVpnServiceResource = new PolicyIpsecVpnService("policyIpsecVpnServiceResource", PolicyIpsecVpnServiceArgs.builder()
        .displayName("string")
        .bypassRules(PolicyIpsecVpnServiceBypassRuleArgs.builder()
            .action("string")
            .destinations("string")
            .nsxId("string")
            .sources("string")
            .build())
        .description("string")
        .enabled(false)
        .gatewayPath("string")
        .haSync(false)
        .ikeLogLevel("string")
        .nsxId("string")
        .policyIpsecVpnServiceId("string")
        .tags(PolicyIpsecVpnServiceTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_ipsec_vpn_service_resource = nsxt.PolicyIpsecVpnService("policyIpsecVpnServiceResource",
        display_name="string",
        bypass_rules=[{
            "action": "string",
            "destinations": ["string"],
            "nsx_id": "string",
            "sources": ["string"],
        }],
        description="string",
        enabled=False,
        gateway_path="string",
        ha_sync=False,
        ike_log_level="string",
        nsx_id="string",
        policy_ipsec_vpn_service_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyIpsecVpnServiceResource = new nsxt.PolicyIpsecVpnService("policyIpsecVpnServiceResource", {
        displayName: "string",
        bypassRules: [{
            action: "string",
            destinations: ["string"],
            nsxId: "string",
            sources: ["string"],
        }],
        description: "string",
        enabled: false,
        gatewayPath: "string",
        haSync: false,
        ikeLogLevel: "string",
        nsxId: "string",
        policyIpsecVpnServiceId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyIpsecVpnService
    properties:
        bypassRules:
            - action: string
              destinations:
                - string
              nsxId: string
              sources:
                - string
        description: string
        displayName: string
        enabled: false
        gatewayPath: string
        haSync: false
        ikeLogLevel: string
        nsxId: string
        policyIpsecVpnServiceId: string
        tags:
            - scope: string
              tag: string
    

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

    DisplayName string
    Display name of the resource.
    BypassRules List<PolicyIpsecVpnServiceBypassRule>
    Set the bypass rules for this IPSec VPN Service.
    Description string
    Description of the resource.
    Enabled bool
    Whether this IPSec VPN Service is enabled. Default is true.
    GatewayPath string
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    HaSync bool
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    IkeLogLevel string
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    LocaleServicePath string
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyIpsecVpnServiceId string
    ID of the resource.
    Tags List<PolicyIpsecVpnServiceTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    BypassRules []PolicyIpsecVpnServiceBypassRuleArgs
    Set the bypass rules for this IPSec VPN Service.
    Description string
    Description of the resource.
    Enabled bool
    Whether this IPSec VPN Service is enabled. Default is true.
    GatewayPath string
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    HaSync bool
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    IkeLogLevel string
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    LocaleServicePath string
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyIpsecVpnServiceId string
    ID of the resource.
    Tags []PolicyIpsecVpnServiceTagArgs
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    bypassRules List<PolicyIpsecVpnServiceBypassRule>
    Set the bypass rules for this IPSec VPN Service.
    description String
    Description of the resource.
    enabled Boolean
    Whether this IPSec VPN Service is enabled. Default is true.
    gatewayPath String
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    haSync Boolean
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ikeLogLevel String
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    localeServicePath String
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyIpsecVpnServiceId String
    ID of the resource.
    tags List<PolicyIpsecVpnServiceTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    bypassRules PolicyIpsecVpnServiceBypassRule[]
    Set the bypass rules for this IPSec VPN Service.
    description string
    Description of the resource.
    enabled boolean
    Whether this IPSec VPN Service is enabled. Default is true.
    gatewayPath string
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    haSync boolean
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ikeLogLevel string
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    localeServicePath string
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyIpsecVpnServiceId string
    ID of the resource.
    tags PolicyIpsecVpnServiceTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    bypass_rules Sequence[PolicyIpsecVpnServiceBypassRuleArgs]
    Set the bypass rules for this IPSec VPN Service.
    description str
    Description of the resource.
    enabled bool
    Whether this IPSec VPN Service is enabled. Default is true.
    gateway_path str
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    ha_sync bool
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ike_log_level str
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    locale_service_path str
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_ipsec_vpn_service_id str
    ID of the resource.
    tags Sequence[PolicyIpsecVpnServiceTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    bypassRules List<Property Map>
    Set the bypass rules for this IPSec VPN Service.
    description String
    Description of the resource.
    enabled Boolean
    Whether this IPSec VPN Service is enabled. Default is true.
    gatewayPath String
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    haSync Boolean
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ikeLogLevel String
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    localeServicePath String
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyIpsecVpnServiceId String
    ID of the resource.
    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 PolicyIpsecVpnService 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 PolicyIpsecVpnService Resource

    Get an existing PolicyIpsecVpnService 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?: PolicyIpsecVpnServiceState, opts?: CustomResourceOptions): PolicyIpsecVpnService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bypass_rules: Optional[Sequence[PolicyIpsecVpnServiceBypassRuleArgs]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            enabled: Optional[bool] = None,
            gateway_path: Optional[str] = None,
            ha_sync: Optional[bool] = None,
            ike_log_level: Optional[str] = None,
            locale_service_path: Optional[str] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_ipsec_vpn_service_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyIpsecVpnServiceTagArgs]] = None) -> PolicyIpsecVpnService
    func GetPolicyIpsecVpnService(ctx *Context, name string, id IDInput, state *PolicyIpsecVpnServiceState, opts ...ResourceOption) (*PolicyIpsecVpnService, error)
    public static PolicyIpsecVpnService Get(string name, Input<string> id, PolicyIpsecVpnServiceState? state, CustomResourceOptions? opts = null)
    public static PolicyIpsecVpnService get(String name, Output<String> id, PolicyIpsecVpnServiceState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyIpsecVpnService    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:
    BypassRules List<PolicyIpsecVpnServiceBypassRule>
    Set the bypass rules for this IPSec VPN Service.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    Enabled bool
    Whether this IPSec VPN Service is enabled. Default is true.
    GatewayPath string
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    HaSync bool
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    IkeLogLevel string
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    LocaleServicePath string
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicyIpsecVpnServiceId 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<PolicyIpsecVpnServiceTag>
    A list of scope + tag pairs to associate with this resource.
    BypassRules []PolicyIpsecVpnServiceBypassRuleArgs
    Set the bypass rules for this IPSec VPN Service.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    Enabled bool
    Whether this IPSec VPN Service is enabled. Default is true.
    GatewayPath string
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    HaSync bool
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    IkeLogLevel string
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    LocaleServicePath string
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicyIpsecVpnServiceId 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 []PolicyIpsecVpnServiceTagArgs
    A list of scope + tag pairs to associate with this resource.
    bypassRules List<PolicyIpsecVpnServiceBypassRule>
    Set the bypass rules for this IPSec VPN Service.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enabled Boolean
    Whether this IPSec VPN Service is enabled. Default is true.
    gatewayPath String
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    haSync Boolean
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ikeLogLevel String
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    localeServicePath String
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policyIpsecVpnServiceId 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<PolicyIpsecVpnServiceTag>
    A list of scope + tag pairs to associate with this resource.
    bypassRules PolicyIpsecVpnServiceBypassRule[]
    Set the bypass rules for this IPSec VPN Service.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    enabled boolean
    Whether this IPSec VPN Service is enabled. Default is true.
    gatewayPath string
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    haSync boolean
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ikeLogLevel string
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    localeServicePath string
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the policy resource.
    policyIpsecVpnServiceId 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 PolicyIpsecVpnServiceTag[]
    A list of scope + tag pairs to associate with this resource.
    bypass_rules Sequence[PolicyIpsecVpnServiceBypassRuleArgs]
    Set the bypass rules for this IPSec VPN Service.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    enabled bool
    Whether this IPSec VPN Service is enabled. Default is true.
    gateway_path str
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    ha_sync bool
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ike_log_level str
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    locale_service_path str
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path str
    The NSX path of the policy resource.
    policy_ipsec_vpn_service_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[PolicyIpsecVpnServiceTagArgs]
    A list of scope + tag pairs to associate with this resource.
    bypassRules List<Property Map>
    Set the bypass rules for this IPSec VPN Service.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enabled Boolean
    Whether this IPSec VPN Service is enabled. Default is true.
    gatewayPath String
    Path of gateway associated with the IPSec VPN Service. Note that at least one of gateway_path and locale_service_path must be specified for the IPSec VPN Service object.
    haSync Boolean
    Enable/Disable IPSec VPN service HA state sync. Default is true.
    ikeLogLevel String
    Set of algorithms to be used for message digest during IKE negotiation. Value is one of DEBUG, INFO, WARN, ERROR and EMERGENCY. Default is INFO.
    localeServicePath String
    Path of the gateway locale service associated with the IPSec VPN Service.

    Deprecated: Deprecated

    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policyIpsecVpnServiceId 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.

    Supporting Types

    PolicyIpsecVpnServiceBypassRule, PolicyIpsecVpnServiceBypassRuleArgs

    Action string
    PROTECT or BYPASS.
    Destinations List<string>
    List of distination subnets. Subnet format is ipv4 CIDR.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Sources List<string>
    List of source subnets. Subnet format is ipv4 CIDR.
    Action string
    PROTECT or BYPASS.
    Destinations []string
    List of distination subnets. Subnet format is ipv4 CIDR.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Sources []string
    List of source subnets. Subnet format is ipv4 CIDR.
    action String
    PROTECT or BYPASS.
    destinations List<String>
    List of distination subnets. Subnet format is ipv4 CIDR.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    sources List<String>
    List of source subnets. Subnet format is ipv4 CIDR.
    action string
    PROTECT or BYPASS.
    destinations string[]
    List of distination subnets. Subnet format is ipv4 CIDR.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    sources string[]
    List of source subnets. Subnet format is ipv4 CIDR.
    action str
    PROTECT or BYPASS.
    destinations Sequence[str]
    List of distination subnets. Subnet format is ipv4 CIDR.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    sources Sequence[str]
    List of source subnets. Subnet format is ipv4 CIDR.
    action String
    PROTECT or BYPASS.
    destinations List<String>
    List of distination subnets. Subnet format is ipv4 CIDR.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    sources List<String>
    List of source subnets. Subnet format is ipv4 CIDR.

    PolicyIpsecVpnServiceTag, PolicyIpsecVpnServiceTagArgs

    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.8.1 published on Wednesday, Apr 30, 2025 by vmware