1. Packages
  2. UpCloud
  3. API Docs
  4. GatewayConnectionTunnel
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

upcloud.GatewayConnectionTunnel

Explore with Pulumi AI

Example Usage

Create GatewayConnectionTunnel Resource

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

Constructor syntax

new GatewayConnectionTunnel(name: string, args: GatewayConnectionTunnelArgs, opts?: CustomResourceOptions);
@overload
def GatewayConnectionTunnel(resource_name: str,
                            args: GatewayConnectionTunnelArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def GatewayConnectionTunnel(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            connection_id: Optional[str] = None,
                            ipsec_auth_psk: Optional[GatewayConnectionTunnelIpsecAuthPskArgs] = None,
                            local_address_name: Optional[str] = None,
                            remote_address: Optional[str] = None,
                            ipsec_properties: Optional[GatewayConnectionTunnelIpsecPropertiesArgs] = None,
                            name: Optional[str] = None)
func NewGatewayConnectionTunnel(ctx *Context, name string, args GatewayConnectionTunnelArgs, opts ...ResourceOption) (*GatewayConnectionTunnel, error)
public GatewayConnectionTunnel(string name, GatewayConnectionTunnelArgs args, CustomResourceOptions? opts = null)
public GatewayConnectionTunnel(String name, GatewayConnectionTunnelArgs args)
public GatewayConnectionTunnel(String name, GatewayConnectionTunnelArgs args, CustomResourceOptions options)
type: upcloud:GatewayConnectionTunnel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GatewayConnectionTunnelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GatewayConnectionTunnelArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GatewayConnectionTunnelArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GatewayConnectionTunnelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GatewayConnectionTunnelArgs
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 gatewayConnectionTunnelResource = new UpCloud.GatewayConnectionTunnel("gatewayConnectionTunnelResource", new()
{
    ConnectionId = "string",
    IpsecAuthPsk = new UpCloud.Inputs.GatewayConnectionTunnelIpsecAuthPskArgs
    {
        Psk = "string",
    },
    LocalAddressName = "string",
    RemoteAddress = "string",
    IpsecProperties = new UpCloud.Inputs.GatewayConnectionTunnelIpsecPropertiesArgs
    {
        ChildRekeyTime = 0,
        DpdDelay = 0,
        DpdTimeout = 0,
        IkeLifetime = 0,
        Phase1Algorithms = new[]
        {
            "string",
        },
        Phase1DhGroupNumbers = new[]
        {
            0,
        },
        Phase1IntegrityAlgorithms = new[]
        {
            "string",
        },
        Phase2Algorithms = new[]
        {
            "string",
        },
        Phase2DhGroupNumbers = new[]
        {
            0,
        },
        Phase2IntegrityAlgorithms = new[]
        {
            "string",
        },
        RekeyTime = 0,
    },
    Name = "string",
});
Copy
example, err := upcloud.NewGatewayConnectionTunnel(ctx, "gatewayConnectionTunnelResource", &upcloud.GatewayConnectionTunnelArgs{
	ConnectionId: pulumi.String("string"),
	IpsecAuthPsk: &upcloud.GatewayConnectionTunnelIpsecAuthPskArgs{
		Psk: pulumi.String("string"),
	},
	LocalAddressName: pulumi.String("string"),
	RemoteAddress:    pulumi.String("string"),
	IpsecProperties: &upcloud.GatewayConnectionTunnelIpsecPropertiesArgs{
		ChildRekeyTime: pulumi.Int(0),
		DpdDelay:       pulumi.Int(0),
		DpdTimeout:     pulumi.Int(0),
		IkeLifetime:    pulumi.Int(0),
		Phase1Algorithms: pulumi.StringArray{
			pulumi.String("string"),
		},
		Phase1DhGroupNumbers: pulumi.IntArray{
			pulumi.Int(0),
		},
		Phase1IntegrityAlgorithms: pulumi.StringArray{
			pulumi.String("string"),
		},
		Phase2Algorithms: pulumi.StringArray{
			pulumi.String("string"),
		},
		Phase2DhGroupNumbers: pulumi.IntArray{
			pulumi.Int(0),
		},
		Phase2IntegrityAlgorithms: pulumi.StringArray{
			pulumi.String("string"),
		},
		RekeyTime: pulumi.Int(0),
	},
	Name: pulumi.String("string"),
})
Copy
var gatewayConnectionTunnelResource = new GatewayConnectionTunnel("gatewayConnectionTunnelResource", GatewayConnectionTunnelArgs.builder()
    .connectionId("string")
    .ipsecAuthPsk(GatewayConnectionTunnelIpsecAuthPskArgs.builder()
        .psk("string")
        .build())
    .localAddressName("string")
    .remoteAddress("string")
    .ipsecProperties(GatewayConnectionTunnelIpsecPropertiesArgs.builder()
        .childRekeyTime(0)
        .dpdDelay(0)
        .dpdTimeout(0)
        .ikeLifetime(0)
        .phase1Algorithms("string")
        .phase1DhGroupNumbers(0)
        .phase1IntegrityAlgorithms("string")
        .phase2Algorithms("string")
        .phase2DhGroupNumbers(0)
        .phase2IntegrityAlgorithms("string")
        .rekeyTime(0)
        .build())
    .name("string")
    .build());
Copy
gateway_connection_tunnel_resource = upcloud.GatewayConnectionTunnel("gatewayConnectionTunnelResource",
    connection_id="string",
    ipsec_auth_psk={
        "psk": "string",
    },
    local_address_name="string",
    remote_address="string",
    ipsec_properties={
        "child_rekey_time": 0,
        "dpd_delay": 0,
        "dpd_timeout": 0,
        "ike_lifetime": 0,
        "phase1_algorithms": ["string"],
        "phase1_dh_group_numbers": [0],
        "phase1_integrity_algorithms": ["string"],
        "phase2_algorithms": ["string"],
        "phase2_dh_group_numbers": [0],
        "phase2_integrity_algorithms": ["string"],
        "rekey_time": 0,
    },
    name="string")
Copy
const gatewayConnectionTunnelResource = new upcloud.GatewayConnectionTunnel("gatewayConnectionTunnelResource", {
    connectionId: "string",
    ipsecAuthPsk: {
        psk: "string",
    },
    localAddressName: "string",
    remoteAddress: "string",
    ipsecProperties: {
        childRekeyTime: 0,
        dpdDelay: 0,
        dpdTimeout: 0,
        ikeLifetime: 0,
        phase1Algorithms: ["string"],
        phase1DhGroupNumbers: [0],
        phase1IntegrityAlgorithms: ["string"],
        phase2Algorithms: ["string"],
        phase2DhGroupNumbers: [0],
        phase2IntegrityAlgorithms: ["string"],
        rekeyTime: 0,
    },
    name: "string",
});
Copy
type: upcloud:GatewayConnectionTunnel
properties:
    connectionId: string
    ipsecAuthPsk:
        psk: string
    ipsecProperties:
        childRekeyTime: 0
        dpdDelay: 0
        dpdTimeout: 0
        ikeLifetime: 0
        phase1Algorithms:
            - string
        phase1DhGroupNumbers:
            - 0
        phase1IntegrityAlgorithms:
            - string
        phase2Algorithms:
            - string
        phase2DhGroupNumbers:
            - 0
        phase2IntegrityAlgorithms:
            - string
        rekeyTime: 0
    localAddressName: string
    name: string
    remoteAddress: string
Copy

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

ConnectionId
This property is required.
Changes to this property will trigger replacement.
string
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
IpsecAuthPsk
This property is required.
Changes to this property will trigger replacement.
UpCloud.Pulumi.UpCloud.Inputs.GatewayConnectionTunnelIpsecAuthPsk
Configuration for authenticating with pre-shared key
LocalAddressName This property is required. string
Public (UpCloud) endpoint address of this tunnel
RemoteAddress This property is required. string
Remote public IP address of the tunnel
IpsecProperties UpCloud.Pulumi.UpCloud.Inputs.GatewayConnectionTunnelIpsecProperties
IPsec configuration for the tunnel
Name Changes to this property will trigger replacement. string
The name of the tunnel, should be unique within the connection
ConnectionId
This property is required.
Changes to this property will trigger replacement.
string
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
IpsecAuthPsk
This property is required.
Changes to this property will trigger replacement.
GatewayConnectionTunnelIpsecAuthPskArgs
Configuration for authenticating with pre-shared key
LocalAddressName This property is required. string
Public (UpCloud) endpoint address of this tunnel
RemoteAddress This property is required. string
Remote public IP address of the tunnel
IpsecProperties GatewayConnectionTunnelIpsecPropertiesArgs
IPsec configuration for the tunnel
Name Changes to this property will trigger replacement. string
The name of the tunnel, should be unique within the connection
connectionId
This property is required.
Changes to this property will trigger replacement.
String
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsecAuthPsk
This property is required.
Changes to this property will trigger replacement.
GatewayConnectionTunnelIpsecAuthPsk
Configuration for authenticating with pre-shared key
localAddressName This property is required. String
Public (UpCloud) endpoint address of this tunnel
remoteAddress This property is required. String
Remote public IP address of the tunnel
ipsecProperties GatewayConnectionTunnelIpsecProperties
IPsec configuration for the tunnel
name Changes to this property will trigger replacement. String
The name of the tunnel, should be unique within the connection
connectionId
This property is required.
Changes to this property will trigger replacement.
string
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsecAuthPsk
This property is required.
Changes to this property will trigger replacement.
GatewayConnectionTunnelIpsecAuthPsk
Configuration for authenticating with pre-shared key
localAddressName This property is required. string
Public (UpCloud) endpoint address of this tunnel
remoteAddress This property is required. string
Remote public IP address of the tunnel
ipsecProperties GatewayConnectionTunnelIpsecProperties
IPsec configuration for the tunnel
name Changes to this property will trigger replacement. string
The name of the tunnel, should be unique within the connection
connection_id
This property is required.
Changes to this property will trigger replacement.
str
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsec_auth_psk
This property is required.
Changes to this property will trigger replacement.
GatewayConnectionTunnelIpsecAuthPskArgs
Configuration for authenticating with pre-shared key
local_address_name This property is required. str
Public (UpCloud) endpoint address of this tunnel
remote_address This property is required. str
Remote public IP address of the tunnel
ipsec_properties GatewayConnectionTunnelIpsecPropertiesArgs
IPsec configuration for the tunnel
name Changes to this property will trigger replacement. str
The name of the tunnel, should be unique within the connection
connectionId
This property is required.
Changes to this property will trigger replacement.
String
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsecAuthPsk
This property is required.
Changes to this property will trigger replacement.
Property Map
Configuration for authenticating with pre-shared key
localAddressName This property is required. String
Public (UpCloud) endpoint address of this tunnel
remoteAddress This property is required. String
Remote public IP address of the tunnel
ipsecProperties Property Map
IPsec configuration for the tunnel
name Changes to this property will trigger replacement. String
The name of the tunnel, should be unique within the connection

Outputs

All input properties are implicitly available as output properties. Additionally, the GatewayConnectionTunnel resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
OperationalState string
Tunnel's current operational, effective state
Uuid string
The UUID of the tunnel
Id string
The provider-assigned unique ID for this managed resource.
OperationalState string
Tunnel's current operational, effective state
Uuid string
The UUID of the tunnel
id String
The provider-assigned unique ID for this managed resource.
operationalState String
Tunnel's current operational, effective state
uuid String
The UUID of the tunnel
id string
The provider-assigned unique ID for this managed resource.
operationalState string
Tunnel's current operational, effective state
uuid string
The UUID of the tunnel
id str
The provider-assigned unique ID for this managed resource.
operational_state str
Tunnel's current operational, effective state
uuid str
The UUID of the tunnel
id String
The provider-assigned unique ID for this managed resource.
operationalState String
Tunnel's current operational, effective state
uuid String
The UUID of the tunnel

Look up Existing GatewayConnectionTunnel Resource

Get an existing GatewayConnectionTunnel 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?: GatewayConnectionTunnelState, opts?: CustomResourceOptions): GatewayConnectionTunnel
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        connection_id: Optional[str] = None,
        ipsec_auth_psk: Optional[GatewayConnectionTunnelIpsecAuthPskArgs] = None,
        ipsec_properties: Optional[GatewayConnectionTunnelIpsecPropertiesArgs] = None,
        local_address_name: Optional[str] = None,
        name: Optional[str] = None,
        operational_state: Optional[str] = None,
        remote_address: Optional[str] = None,
        uuid: Optional[str] = None) -> GatewayConnectionTunnel
func GetGatewayConnectionTunnel(ctx *Context, name string, id IDInput, state *GatewayConnectionTunnelState, opts ...ResourceOption) (*GatewayConnectionTunnel, error)
public static GatewayConnectionTunnel Get(string name, Input<string> id, GatewayConnectionTunnelState? state, CustomResourceOptions? opts = null)
public static GatewayConnectionTunnel get(String name, Output<String> id, GatewayConnectionTunnelState state, CustomResourceOptions options)
resources:  _:    type: upcloud:GatewayConnectionTunnel    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ConnectionId Changes to this property will trigger replacement. string
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
IpsecAuthPsk Changes to this property will trigger replacement. UpCloud.Pulumi.UpCloud.Inputs.GatewayConnectionTunnelIpsecAuthPsk
Configuration for authenticating with pre-shared key
IpsecProperties UpCloud.Pulumi.UpCloud.Inputs.GatewayConnectionTunnelIpsecProperties
IPsec configuration for the tunnel
LocalAddressName string
Public (UpCloud) endpoint address of this tunnel
Name Changes to this property will trigger replacement. string
The name of the tunnel, should be unique within the connection
OperationalState string
Tunnel's current operational, effective state
RemoteAddress string
Remote public IP address of the tunnel
Uuid string
The UUID of the tunnel
ConnectionId Changes to this property will trigger replacement. string
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
IpsecAuthPsk Changes to this property will trigger replacement. GatewayConnectionTunnelIpsecAuthPskArgs
Configuration for authenticating with pre-shared key
IpsecProperties GatewayConnectionTunnelIpsecPropertiesArgs
IPsec configuration for the tunnel
LocalAddressName string
Public (UpCloud) endpoint address of this tunnel
Name Changes to this property will trigger replacement. string
The name of the tunnel, should be unique within the connection
OperationalState string
Tunnel's current operational, effective state
RemoteAddress string
Remote public IP address of the tunnel
Uuid string
The UUID of the tunnel
connectionId Changes to this property will trigger replacement. String
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsecAuthPsk Changes to this property will trigger replacement. GatewayConnectionTunnelIpsecAuthPsk
Configuration for authenticating with pre-shared key
ipsecProperties GatewayConnectionTunnelIpsecProperties
IPsec configuration for the tunnel
localAddressName String
Public (UpCloud) endpoint address of this tunnel
name Changes to this property will trigger replacement. String
The name of the tunnel, should be unique within the connection
operationalState String
Tunnel's current operational, effective state
remoteAddress String
Remote public IP address of the tunnel
uuid String
The UUID of the tunnel
connectionId Changes to this property will trigger replacement. string
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsecAuthPsk Changes to this property will trigger replacement. GatewayConnectionTunnelIpsecAuthPsk
Configuration for authenticating with pre-shared key
ipsecProperties GatewayConnectionTunnelIpsecProperties
IPsec configuration for the tunnel
localAddressName string
Public (UpCloud) endpoint address of this tunnel
name Changes to this property will trigger replacement. string
The name of the tunnel, should be unique within the connection
operationalState string
Tunnel's current operational, effective state
remoteAddress string
Remote public IP address of the tunnel
uuid string
The UUID of the tunnel
connection_id Changes to this property will trigger replacement. str
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsec_auth_psk Changes to this property will trigger replacement. GatewayConnectionTunnelIpsecAuthPskArgs
Configuration for authenticating with pre-shared key
ipsec_properties GatewayConnectionTunnelIpsecPropertiesArgs
IPsec configuration for the tunnel
local_address_name str
Public (UpCloud) endpoint address of this tunnel
name Changes to this property will trigger replacement. str
The name of the tunnel, should be unique within the connection
operational_state str
Tunnel's current operational, effective state
remote_address str
Remote public IP address of the tunnel
uuid str
The UUID of the tunnel
connectionId Changes to this property will trigger replacement. String
ID of the upcloud.GatewayConnection resource to which the tunnel belongs
ipsecAuthPsk Changes to this property will trigger replacement. Property Map
Configuration for authenticating with pre-shared key
ipsecProperties Property Map
IPsec configuration for the tunnel
localAddressName String
Public (UpCloud) endpoint address of this tunnel
name Changes to this property will trigger replacement. String
The name of the tunnel, should be unique within the connection
operationalState String
Tunnel's current operational, effective state
remoteAddress String
Remote public IP address of the tunnel
uuid String
The UUID of the tunnel

Supporting Types

GatewayConnectionTunnelIpsecAuthPsk
, GatewayConnectionTunnelIpsecAuthPskArgs

Psk This property is required. string
The pre-shared key. This value is only used during resource creation and is not returned in the state. It is not possible to update this value. If you need to update it, delete the connection and create a new one.
Psk This property is required. string
The pre-shared key. This value is only used during resource creation and is not returned in the state. It is not possible to update this value. If you need to update it, delete the connection and create a new one.
psk This property is required. String
The pre-shared key. This value is only used during resource creation and is not returned in the state. It is not possible to update this value. If you need to update it, delete the connection and create a new one.
psk This property is required. string
The pre-shared key. This value is only used during resource creation and is not returned in the state. It is not possible to update this value. If you need to update it, delete the connection and create a new one.
psk This property is required. str
The pre-shared key. This value is only used during resource creation and is not returned in the state. It is not possible to update this value. If you need to update it, delete the connection and create a new one.
psk This property is required. String
The pre-shared key. This value is only used during resource creation and is not returned in the state. It is not possible to update this value. If you need to update it, delete the connection and create a new one.

GatewayConnectionTunnelIpsecProperties
, GatewayConnectionTunnelIpsecPropertiesArgs

ChildRekeyTime int
IKE child SA rekey time in seconds.
DpdDelay int
Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
DpdTimeout int
Timeout period for DPD reply before considering the peer to be dead, in seconds.
IkeLifetime int
Maximum IKE SA lifetime in seconds.
Phase1Algorithms List<string>
List of Phase 1: Proposal algorithms.
Phase1DhGroupNumbers List<int>
List of Phase 1 Diffie-Hellman group numbers.
Phase1IntegrityAlgorithms List<string>
List of Phase 1 integrity algorithms.
Phase2Algorithms List<string>
List of Phase 2: Security Association algorithms.
Phase2DhGroupNumbers List<int>
List of Phase 2 Diffie-Hellman group numbers.
Phase2IntegrityAlgorithms List<string>
List of Phase 2 integrity algorithms.
RekeyTime int
IKE SA rekey time in seconds.
ChildRekeyTime int
IKE child SA rekey time in seconds.
DpdDelay int
Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
DpdTimeout int
Timeout period for DPD reply before considering the peer to be dead, in seconds.
IkeLifetime int
Maximum IKE SA lifetime in seconds.
Phase1Algorithms []string
List of Phase 1: Proposal algorithms.
Phase1DhGroupNumbers []int
List of Phase 1 Diffie-Hellman group numbers.
Phase1IntegrityAlgorithms []string
List of Phase 1 integrity algorithms.
Phase2Algorithms []string
List of Phase 2: Security Association algorithms.
Phase2DhGroupNumbers []int
List of Phase 2 Diffie-Hellman group numbers.
Phase2IntegrityAlgorithms []string
List of Phase 2 integrity algorithms.
RekeyTime int
IKE SA rekey time in seconds.
childRekeyTime Integer
IKE child SA rekey time in seconds.
dpdDelay Integer
Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
dpdTimeout Integer
Timeout period for DPD reply before considering the peer to be dead, in seconds.
ikeLifetime Integer
Maximum IKE SA lifetime in seconds.
phase1Algorithms List<String>
List of Phase 1: Proposal algorithms.
phase1DhGroupNumbers List<Integer>
List of Phase 1 Diffie-Hellman group numbers.
phase1IntegrityAlgorithms List<String>
List of Phase 1 integrity algorithms.
phase2Algorithms List<String>
List of Phase 2: Security Association algorithms.
phase2DhGroupNumbers List<Integer>
List of Phase 2 Diffie-Hellman group numbers.
phase2IntegrityAlgorithms List<String>
List of Phase 2 integrity algorithms.
rekeyTime Integer
IKE SA rekey time in seconds.
childRekeyTime number
IKE child SA rekey time in seconds.
dpdDelay number
Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
dpdTimeout number
Timeout period for DPD reply before considering the peer to be dead, in seconds.
ikeLifetime number
Maximum IKE SA lifetime in seconds.
phase1Algorithms string[]
List of Phase 1: Proposal algorithms.
phase1DhGroupNumbers number[]
List of Phase 1 Diffie-Hellman group numbers.
phase1IntegrityAlgorithms string[]
List of Phase 1 integrity algorithms.
phase2Algorithms string[]
List of Phase 2: Security Association algorithms.
phase2DhGroupNumbers number[]
List of Phase 2 Diffie-Hellman group numbers.
phase2IntegrityAlgorithms string[]
List of Phase 2 integrity algorithms.
rekeyTime number
IKE SA rekey time in seconds.
child_rekey_time int
IKE child SA rekey time in seconds.
dpd_delay int
Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
dpd_timeout int
Timeout period for DPD reply before considering the peer to be dead, in seconds.
ike_lifetime int
Maximum IKE SA lifetime in seconds.
phase1_algorithms Sequence[str]
List of Phase 1: Proposal algorithms.
phase1_dh_group_numbers Sequence[int]
List of Phase 1 Diffie-Hellman group numbers.
phase1_integrity_algorithms Sequence[str]
List of Phase 1 integrity algorithms.
phase2_algorithms Sequence[str]
List of Phase 2: Security Association algorithms.
phase2_dh_group_numbers Sequence[int]
List of Phase 2 Diffie-Hellman group numbers.
phase2_integrity_algorithms Sequence[str]
List of Phase 2 integrity algorithms.
rekey_time int
IKE SA rekey time in seconds.
childRekeyTime Number
IKE child SA rekey time in seconds.
dpdDelay Number
Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
dpdTimeout Number
Timeout period for DPD reply before considering the peer to be dead, in seconds.
ikeLifetime Number
Maximum IKE SA lifetime in seconds.
phase1Algorithms List<String>
List of Phase 1: Proposal algorithms.
phase1DhGroupNumbers List<Number>
List of Phase 1 Diffie-Hellman group numbers.
phase1IntegrityAlgorithms List<String>
List of Phase 1 integrity algorithms.
phase2Algorithms List<String>
List of Phase 2: Security Association algorithms.
phase2DhGroupNumbers List<Number>
List of Phase 2 Diffie-Hellman group numbers.
phase2IntegrityAlgorithms List<String>
List of Phase 2 integrity algorithms.
rekeyTime Number
IKE SA rekey time in seconds.

Package Details

Repository
upcloud UpCloudLtd/pulumi-upcloud
License
Apache-2.0
Notes
This Pulumi package is based on the upcloud Terraform Provider.