SiteConnection
Manages a V2 Neutron IPSec site connection resource within OpenStack.
Example Usage
using Pulumi;
using OpenStack = Pulumi.OpenStack;
class MyStack : Stack
{
public MyStack()
{
var conn1 = new OpenStack.VPNaaS.SiteConnection("conn1", new OpenStack.VPNaaS.SiteConnectionArgs
{
IkepolicyId = openstack_vpnaas_ike_policy_v2.Policy_2.Id,
IpsecpolicyId = openstack_vpnaas_ipsec_policy_v2.Policy_1.Id,
LocalEpGroupId = openstack_vpnaas_endpoint_group_v2.Group_2.Id,
PeerAddress = "192.168.10.1",
PeerEpGroupId = openstack_vpnaas_endpoint_group_v2.Group_1.Id,
Psk = "secret",
VpnserviceId = openstack_vpnaas_service_v2.Service_1.Id,
});
}
}
Coming soon!
import pulumi
import pulumi_openstack as openstack
conn1 = openstack.vpnaas.SiteConnection("conn1",
ikepolicy_id=openstack_vpnaas_ike_policy_v2["policy_2"]["id"],
ipsecpolicy_id=openstack_vpnaas_ipsec_policy_v2["policy_1"]["id"],
local_ep_group_id=openstack_vpnaas_endpoint_group_v2["group_2"]["id"],
peer_address="192.168.10.1",
peer_ep_group_id=openstack_vpnaas_endpoint_group_v2["group_1"]["id"],
psk="secret",
vpnservice_id=openstack_vpnaas_service_v2["service_1"]["id"])import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const conn1 = new openstack.vpnaas.SiteConnection("conn_1", {
ikepolicyId: openstack_vpnaas_ike_policy_v2_policy_2.id,
ipsecpolicyId: openstack_vpnaas_ipsec_policy_v2_policy_1.id,
localEpGroupId: openstack_vpnaas_endpoint_group_v2_group_2.id,
peerAddress: "192.168.10.1",
peerEpGroupId: openstack_vpnaas_endpoint_group_v2_group_1.id,
psk: "secret",
vpnserviceId: openstack_vpnaas_service_v2_service_1.id,
});Create a SiteConnection Resource
new SiteConnection(name: string, args: SiteConnectionArgs, opts?: CustomResourceOptions);def SiteConnection(resource_name, opts=None, admin_state_up=None, description=None, dpds=None, ikepolicy_id=None, initiator=None, ipsecpolicy_id=None, local_ep_group_id=None, local_id=None, mtu=None, name=None, peer_address=None, peer_cidrs=None, peer_ep_group_id=None, peer_id=None, psk=None, region=None, tenant_id=None, value_specs=None, vpnservice_id=None, __props__=None);func NewSiteConnection(ctx *Context, name string, args SiteConnectionArgs, opts ...ResourceOption) (*SiteConnection, error)public SiteConnection(string name, SiteConnectionArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args SiteConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SiteConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SiteConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
SiteConnection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The SiteConnection resource accepts the following input properties:
- Ikepolicy
Id string The ID of the IKE policy. Changing this creates a new connection.
- Ipsecpolicy
Id string The ID of the IPsec policy. Changing this creates a new connection.
- Peer
Address string The peer gateway public IPv4 or IPv6 address or FQDN.
- Peer
Id string The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- Psk string
The pre-shared key. A valid value is any string.
- Vpnservice
Id string The ID of the VPN service. Changing this creates a new connection.
- Admin
State boolUp The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- Description string
The human-readable description for the connection. Changing this updates the description of the existing connection.
- Dpds
List<Pulumi.
Open Stack. VPNaa S. Inputs. Site Connection Dpd Args> A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- Initiator string
A valid value is response-only or bi-directional. Default is bi-directional.
- Local
Ep stringGroup Id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- Local
Id string An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- Mtu int
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- Name string
The name of the connection. Changing this updates the name of the existing connection.
- Peer
Cidrs List<string> Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- Peer
Ep stringGroup Id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- Tenant
Id string The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- Value
Specs Dictionary<string, object> Map of additional options.
- Ikepolicy
Id string The ID of the IKE policy. Changing this creates a new connection.
- Ipsecpolicy
Id string The ID of the IPsec policy. Changing this creates a new connection.
- Peer
Address string The peer gateway public IPv4 or IPv6 address or FQDN.
- Peer
Id string The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- Psk string
The pre-shared key. A valid value is any string.
- Vpnservice
Id string The ID of the VPN service. Changing this creates a new connection.
- Admin
State boolUp The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- Description string
The human-readable description for the connection. Changing this updates the description of the existing connection.
- Dpds
[]Site
Connection Dpd A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- Initiator string
A valid value is response-only or bi-directional. Default is bi-directional.
- Local
Ep stringGroup Id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- Local
Id string An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- Mtu int
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- Name string
The name of the connection. Changing this updates the name of the existing connection.
- Peer
Cidrs []string Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- Peer
Ep stringGroup Id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- Tenant
Id string The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- Value
Specs map[string]interface{} Map of additional options.
- ikepolicy
Id string The ID of the IKE policy. Changing this creates a new connection.
- ipsecpolicy
Id string The ID of the IPsec policy. Changing this creates a new connection.
- peer
Address string The peer gateway public IPv4 or IPv6 address or FQDN.
- peer
Id string The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- psk string
The pre-shared key. A valid value is any string.
- vpnservice
Id string The ID of the VPN service. Changing this creates a new connection.
- admin
State booleanUp The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- description string
The human-readable description for the connection. Changing this updates the description of the existing connection.
- dpds
Site
Connection Dpd[] A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- initiator string
A valid value is response-only or bi-directional. Default is bi-directional.
- local
Ep stringGroup Id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- local
Id string An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- mtu number
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- name string
The name of the connection. Changing this updates the name of the existing connection.
- peer
Cidrs string[] Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- peer
Ep stringGroup Id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- tenant
Id string The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- value
Specs {[key: string]: any} Map of additional options.
- ikepolicy_
id str The ID of the IKE policy. Changing this creates a new connection.
- ipsecpolicy_
id str The ID of the IPsec policy. Changing this creates a new connection.
- peer_
address str The peer gateway public IPv4 or IPv6 address or FQDN.
- peer_
id str The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- psk str
The pre-shared key. A valid value is any string.
- vpnservice_
id str The ID of the VPN service. Changing this creates a new connection.
- admin_
state_ boolup The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- description str
The human-readable description for the connection. Changing this updates the description of the existing connection.
- dpds
List[Site
Connection Dpd] A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- initiator str
A valid value is response-only or bi-directional. Default is bi-directional.
- local_
ep_ strgroup_ id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- local_
id str An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- mtu float
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- name str
The name of the connection. Changing this updates the name of the existing connection.
- peer_
cidrs List[str] Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- peer_
ep_ strgroup_ id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- region str
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- tenant_
id str The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- value_
specs Dict[str, Any] Map of additional options.
Outputs
All input properties are implicitly available as output properties. Additionally, the SiteConnection resource produces the following output properties:
Look up an Existing SiteConnection Resource
Get an existing SiteConnection 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?: SiteConnectionState, opts?: CustomResourceOptions): SiteConnectionstatic get(resource_name, id, opts=None, admin_state_up=None, description=None, dpds=None, ikepolicy_id=None, initiator=None, ipsecpolicy_id=None, local_ep_group_id=None, local_id=None, mtu=None, name=None, peer_address=None, peer_cidrs=None, peer_ep_group_id=None, peer_id=None, psk=None, region=None, tenant_id=None, value_specs=None, vpnservice_id=None, __props__=None);func GetSiteConnection(ctx *Context, name string, id IDInput, state *SiteConnectionState, opts ...ResourceOption) (*SiteConnection, error)public static SiteConnection Get(string name, Input<string> id, SiteConnectionState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Admin
State boolUp The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- Description string
The human-readable description for the connection. Changing this updates the description of the existing connection.
- Dpds
List<Pulumi.
Open Stack. VPNaa S. Inputs. Site Connection Dpd Args> A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- Ikepolicy
Id string The ID of the IKE policy. Changing this creates a new connection.
- Initiator string
A valid value is response-only or bi-directional. Default is bi-directional.
- Ipsecpolicy
Id string The ID of the IPsec policy. Changing this creates a new connection.
- Local
Ep stringGroup Id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- Local
Id string An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- Mtu int
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- Name string
The name of the connection. Changing this updates the name of the existing connection.
- Peer
Address string The peer gateway public IPv4 or IPv6 address or FQDN.
- Peer
Cidrs List<string> Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- Peer
Ep stringGroup Id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- Peer
Id string The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- Psk string
The pre-shared key. A valid value is any string.
- Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- Tenant
Id string The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- Value
Specs Dictionary<string, object> Map of additional options.
- Vpnservice
Id string The ID of the VPN service. Changing this creates a new connection.
- Admin
State boolUp The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- Description string
The human-readable description for the connection. Changing this updates the description of the existing connection.
- Dpds
[]Site
Connection Dpd A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- Ikepolicy
Id string The ID of the IKE policy. Changing this creates a new connection.
- Initiator string
A valid value is response-only or bi-directional. Default is bi-directional.
- Ipsecpolicy
Id string The ID of the IPsec policy. Changing this creates a new connection.
- Local
Ep stringGroup Id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- Local
Id string An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- Mtu int
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- Name string
The name of the connection. Changing this updates the name of the existing connection.
- Peer
Address string The peer gateway public IPv4 or IPv6 address or FQDN.
- Peer
Cidrs []string Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- Peer
Ep stringGroup Id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- Peer
Id string The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- Psk string
The pre-shared key. A valid value is any string.
- Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- Tenant
Id string The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- Value
Specs map[string]interface{} Map of additional options.
- Vpnservice
Id string The ID of the VPN service. Changing this creates a new connection.
- admin
State booleanUp The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- description string
The human-readable description for the connection. Changing this updates the description of the existing connection.
- dpds
Site
Connection Dpd[] A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- ikepolicy
Id string The ID of the IKE policy. Changing this creates a new connection.
- initiator string
A valid value is response-only or bi-directional. Default is bi-directional.
- ipsecpolicy
Id string The ID of the IPsec policy. Changing this creates a new connection.
- local
Ep stringGroup Id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- local
Id string An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- mtu number
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- name string
The name of the connection. Changing this updates the name of the existing connection.
- peer
Address string The peer gateway public IPv4 or IPv6 address or FQDN.
- peer
Cidrs string[] Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- peer
Ep stringGroup Id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- peer
Id string The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- psk string
The pre-shared key. A valid value is any string.
- region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- tenant
Id string The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- value
Specs {[key: string]: any} Map of additional options.
- vpnservice
Id string The ID of the VPN service. Changing this creates a new connection.
- admin_
state_ boolup The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.
- description str
The human-readable description for the connection. Changing this updates the description of the existing connection.
- dpds
List[Site
Connection Dpd] A dictionary with dead peer detection (DPD) protocol controls. -
action- (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.- ikepolicy_
id str The ID of the IKE policy. Changing this creates a new connection.
- initiator str
A valid value is response-only or bi-directional. Default is bi-directional.
- ipsecpolicy_
id str The ID of the IPsec policy. Changing this creates a new connection.
- local_
ep_ strgroup_ id The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.
- local_
id str An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.
- mtu float
The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.
- name str
The name of the connection. Changing this updates the name of the existing connection.
- peer_
address str The peer gateway public IPv4 or IPv6 address or FQDN.
- peer_
cidrs List[str] Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .
- peer_
ep_ strgroup_ id The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.
- peer_
id str The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.
- psk str
The pre-shared key. A valid value is any string.
- region str
The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the
regionargument of the provider is used. Changing this creates a new site connection.- tenant_
id str The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.
- value_
specs Dict[str, Any] Map of additional options.
- vpnservice_
id str The ID of the VPN service. Changing this creates a new connection.
Supporting Types
SiteConnectionDpd
Package Details
- Repository
- https://github.com/pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
openstackTerraform Provider.