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

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);
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:

IkepolicyId string

The ID of the IKE policy. Changing this creates a new connection.

IpsecpolicyId string

The ID of the IPsec policy. Changing this creates a new connection.

PeerAddress string

The peer gateway public IPv4 or IPv6 address or FQDN.

PeerId 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.

VpnserviceId string

The ID of the VPN service. Changing this creates a new connection.

AdminStateUp bool

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.OpenStack.VPNaaS.Inputs.SiteConnectionDpdArgs>

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.

LocalEpGroupId string

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.

LocalId 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.

PeerCidrs List<string>

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

PeerEpGroupId string

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 region argument of the provider is used. Changing this creates a new site connection.

TenantId string

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

ValueSpecs Dictionary<string, object>

Map of additional options.

IkepolicyId string

The ID of the IKE policy. Changing this creates a new connection.

IpsecpolicyId string

The ID of the IPsec policy. Changing this creates a new connection.

PeerAddress string

The peer gateway public IPv4 or IPv6 address or FQDN.

PeerId 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.

VpnserviceId string

The ID of the VPN service. Changing this creates a new connection.

AdminStateUp bool

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 []SiteConnectionDpd

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.

LocalEpGroupId string

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.

LocalId 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.

PeerCidrs []string

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

PeerEpGroupId string

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 region argument of the provider is used. Changing this creates a new site connection.

TenantId string

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

ValueSpecs map[string]interface{}

Map of additional options.

ikepolicyId string

The ID of the IKE policy. Changing this creates a new connection.

ipsecpolicyId string

The ID of the IPsec policy. Changing this creates a new connection.

peerAddress string

The peer gateway public IPv4 or IPv6 address or FQDN.

peerId 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.

vpnserviceId string

The ID of the VPN service. Changing this creates a new connection.

adminStateUp boolean

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 SiteConnectionDpd[]

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.

localEpGroupId string

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.

localId 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.

peerCidrs string[]

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

peerEpGroupId string

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 region argument of the provider is used. Changing this creates a new site connection.

tenantId string

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

valueSpecs {[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_up bool

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[SiteConnectionDpd]

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_group_id str

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_group_id str

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 region argument 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:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

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): SiteConnection
static 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:

AdminStateUp bool

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.OpenStack.VPNaaS.Inputs.SiteConnectionDpdArgs>

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.

IkepolicyId 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.

IpsecpolicyId string

The ID of the IPsec policy. Changing this creates a new connection.

LocalEpGroupId string

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.

LocalId 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.

PeerAddress string

The peer gateway public IPv4 or IPv6 address or FQDN.

PeerCidrs List<string>

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

PeerEpGroupId string

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.

PeerId 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 region argument of the provider is used. Changing this creates a new site connection.

TenantId string

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

ValueSpecs Dictionary<string, object>

Map of additional options.

VpnserviceId string

The ID of the VPN service. Changing this creates a new connection.

AdminStateUp bool

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 []SiteConnectionDpd

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.

IkepolicyId 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.

IpsecpolicyId string

The ID of the IPsec policy. Changing this creates a new connection.

LocalEpGroupId string

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.

LocalId 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.

PeerAddress string

The peer gateway public IPv4 or IPv6 address or FQDN.

PeerCidrs []string

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

PeerEpGroupId string

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.

PeerId 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 region argument of the provider is used. Changing this creates a new site connection.

TenantId string

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

ValueSpecs map[string]interface{}

Map of additional options.

VpnserviceId string

The ID of the VPN service. Changing this creates a new connection.

adminStateUp boolean

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 SiteConnectionDpd[]

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.

ikepolicyId 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.

ipsecpolicyId string

The ID of the IPsec policy. Changing this creates a new connection.

localEpGroupId string

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.

localId 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.

peerAddress string

The peer gateway public IPv4 or IPv6 address or FQDN.

peerCidrs string[]

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

peerEpGroupId string

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.

peerId 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 region argument of the provider is used. Changing this creates a new site connection.

tenantId string

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

valueSpecs {[key: string]: any}

Map of additional options.

vpnserviceId string

The ID of the VPN service. Changing this creates a new connection.

admin_state_up bool

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[SiteConnectionDpd]

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_group_id str

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_group_id str

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 region argument 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

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Action string
Interval int
Timeout int
Action string
Interval int
Timeout int
action string
interval number
timeout number
action str
interval float
timeout float

Package Details

Repository
https://github.com/pulumi/pulumi-openstack
License
Apache-2.0
Notes
This Pulumi package is based on the openstack Terraform Provider.