nsxt.PolicyIpsecVpnService
Explore with Pulumi AI
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:
- Display
Name string - Display name of the resource.
- Bypass
Rules List<PolicyIpsec Vpn Service Bypass Rule> - 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
. - Gateway
Path string - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_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 stringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - Locale
Service stringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Ipsec stringVpn Service Id - ID of the resource.
- List<Policy
Ipsec Vpn Service Tag> - A list of scope + tag pairs to associate with this resource.
- Display
Name string - Display name of the resource.
- Bypass
Rules []PolicyIpsec Vpn Service Bypass Rule Args - 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
. - Gateway
Path string - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_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 stringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - Locale
Service stringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Ipsec stringVpn Service Id - ID of the resource.
- []Policy
Ipsec Vpn Service Tag Args - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- bypass
Rules List<PolicyIpsec Vpn Service Bypass Rule> - 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
. - gateway
Path String - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_service_path
must be specified for the IPSec VPN Service object. - ha
Sync Boolean - Enable/Disable IPSec VPN service HA state sync. Default is
true
. - ike
Log StringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale
Service StringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Ipsec StringVpn Service Id - ID of the resource.
- List<Policy
Ipsec Vpn Service Tag> - A list of scope + tag pairs to associate with this resource.
- display
Name string - Display name of the resource.
- bypass
Rules PolicyIpsec Vpn Service Bypass Rule[] - 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
. - gateway
Path string - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_service_path
must be specified for the IPSec VPN Service object. - ha
Sync boolean - Enable/Disable IPSec VPN service HA state sync. Default is
true
. - ike
Log stringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale
Service stringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Ipsec stringVpn Service Id - ID of the resource.
- Policy
Ipsec Vpn Service Tag[] - A list of scope + tag pairs to associate with this resource.
- display_
name str - Display name of the resource.
- bypass_
rules Sequence[PolicyIpsec Vpn Service Bypass Rule Args] - 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
andlocale_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_ strlevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale_
service_ strpath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy_
ipsec_ strvpn_ service_ id - ID of the resource.
- Sequence[Policy
Ipsec Vpn Service Tag Args] - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- bypass
Rules 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
. - gateway
Path String - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_service_path
must be specified for the IPSec VPN Service object. - ha
Sync Boolean - Enable/Disable IPSec VPN service HA state sync. Default is
true
. - ike
Log StringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale
Service StringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Ipsec StringVpn Service Id - ID of the resource.
- 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:
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.
- Bypass
Rules List<PolicyIpsec Vpn Service Bypass Rule> - Set the bypass rules for this IPSec VPN Service.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Enabled bool
- Whether this IPSec VPN Service is enabled. Default is
true
. - Gateway
Path string - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_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 stringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - Locale
Service stringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- Nsx
Id 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.
- Policy
Ipsec stringVpn Service Id - 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.
- List<Policy
Ipsec Vpn Service Tag> - A list of scope + tag pairs to associate with this resource.
- Bypass
Rules []PolicyIpsec Vpn Service Bypass Rule Args - Set the bypass rules for this IPSec VPN Service.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Enabled bool
- Whether this IPSec VPN Service is enabled. Default is
true
. - Gateway
Path string - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_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 stringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - Locale
Service stringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- Nsx
Id 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.
- Policy
Ipsec stringVpn Service Id - 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.
- []Policy
Ipsec Vpn Service Tag Args - A list of scope + tag pairs to associate with this resource.
- bypass
Rules List<PolicyIpsec Vpn Service Bypass Rule> - Set the bypass rules for this IPSec VPN Service.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- enabled Boolean
- Whether this IPSec VPN Service is enabled. Default is
true
. - gateway
Path String - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_service_path
must be specified for the IPSec VPN Service object. - ha
Sync Boolean - Enable/Disable IPSec VPN service HA state sync. Default is
true
. - ike
Log StringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale
Service StringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx
Id 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.
- policy
Ipsec StringVpn Service Id - 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.
- List<Policy
Ipsec Vpn Service Tag> - A list of scope + tag pairs to associate with this resource.
- bypass
Rules PolicyIpsec Vpn Service Bypass Rule[] - Set the bypass rules for this IPSec VPN Service.
- description string
- Description of the resource.
- display
Name string - Display name of the resource.
- enabled boolean
- Whether this IPSec VPN Service is enabled. Default is
true
. - gateway
Path string - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_service_path
must be specified for the IPSec VPN Service object. - ha
Sync boolean - Enable/Disable IPSec VPN service HA state sync. Default is
true
. - ike
Log stringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale
Service stringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx
Id 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.
- policy
Ipsec stringVpn Service Id - 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.
- Policy
Ipsec Vpn Service Tag[] - A list of scope + tag pairs to associate with this resource.
- bypass_
rules Sequence[PolicyIpsec Vpn Service Bypass Rule Args] - 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
andlocale_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_ strlevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale_
service_ strpath - Path of the gateway locale service associated with the IPSec VPN Service.
- 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_ strvpn_ service_ id - 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.
- Sequence[Policy
Ipsec Vpn Service Tag Args] - A list of scope + tag pairs to associate with this resource.
- bypass
Rules List<Property Map> - Set the bypass rules for this IPSec VPN Service.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- enabled Boolean
- Whether this IPSec VPN Service is enabled. Default is
true
. - gateway
Path String - Path of gateway associated with the IPSec VPN Service. Note that at least one of
gateway_path
andlocale_service_path
must be specified for the IPSec VPN Service object. - ha
Sync Boolean - Enable/Disable IPSec VPN service HA state sync. Default is
true
. - ike
Log StringLevel - Set of algorithms to be used for message digest during IKE negotiation. Value is one of
DEBUG
,INFO
,WARN
,ERROR
andEMERGENCY
. Default isINFO
. - locale
Service StringPath - Path of the gateway locale service associated with the IPSec VPN Service.
- nsx
Id 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.
- policy
Ipsec StringVpn Service Id - 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.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
Supporting Types
PolicyIpsecVpnServiceBypassRule, PolicyIpsecVpnServiceBypassRuleArgs
- Action string
PROTECT
orBYPASS
.- Destinations List<string>
- List of distination subnets. Subnet format is ipv4 CIDR.
- Nsx
Id 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
orBYPASS
.- Destinations []string
- List of distination subnets. Subnet format is ipv4 CIDR.
- Nsx
Id 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
orBYPASS
.- destinations List<String>
- List of distination subnets. Subnet format is ipv4 CIDR.
- nsx
Id 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
orBYPASS
.- destinations string[]
- List of distination subnets. Subnet format is ipv4 CIDR.
- nsx
Id 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
orBYPASS
.- 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
orBYPASS
.- destinations List<String>
- List of distination subnets. Subnet format is ipv4 CIDR.
- nsx
Id 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
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.