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 string
- The unique name of the resource.
- args GatewayConnectionTunnelArgs
- 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 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 string
- The unique name of the resource.
- args GatewayConnectionTunnelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayConnectionTunnelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Connection
Id string - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- Ipsec
Auth UpPsk Cloud. Pulumi. Up Cloud. Inputs. Gateway Connection Tunnel Ipsec Auth Psk - Configuration for authenticating with pre-shared key
- Local
Address stringName - Public (UpCloud) endpoint address of this tunnel
- Remote
Address string - Remote public IP address of the tunnel
- Ipsec
Properties UpCloud. Pulumi. Up Cloud. Inputs. Gateway Connection Tunnel Ipsec Properties - IPsec configuration for the tunnel
- Name string
- The name of the tunnel, should be unique within the connection
- Connection
Id string - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- Ipsec
Auth GatewayPsk Connection Tunnel Ipsec Auth Psk Args - Configuration for authenticating with pre-shared key
- Local
Address stringName - Public (UpCloud) endpoint address of this tunnel
- Remote
Address string - Remote public IP address of the tunnel
- Ipsec
Properties GatewayConnection Tunnel Ipsec Properties Args - IPsec configuration for the tunnel
- Name string
- The name of the tunnel, should be unique within the connection
- connection
Id String - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec
Auth GatewayPsk Connection Tunnel Ipsec Auth Psk - Configuration for authenticating with pre-shared key
- local
Address StringName - Public (UpCloud) endpoint address of this tunnel
- remote
Address String - Remote public IP address of the tunnel
- ipsec
Properties GatewayConnection Tunnel Ipsec Properties - IPsec configuration for the tunnel
- name String
- The name of the tunnel, should be unique within the connection
- connection
Id string - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec
Auth GatewayPsk Connection Tunnel Ipsec Auth Psk - Configuration for authenticating with pre-shared key
- local
Address stringName - Public (UpCloud) endpoint address of this tunnel
- remote
Address string - Remote public IP address of the tunnel
- ipsec
Properties GatewayConnection Tunnel Ipsec Properties - IPsec configuration for the tunnel
- name string
- The name of the tunnel, should be unique within the connection
- connection_
id str - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec_
auth_ Gatewaypsk Connection Tunnel Ipsec Auth Psk Args - Configuration for authenticating with pre-shared key
- local_
address_ strname - Public (UpCloud) endpoint address of this tunnel
- remote_
address str - Remote public IP address of the tunnel
- ipsec_
properties GatewayConnection Tunnel Ipsec Properties Args - IPsec configuration for the tunnel
- name str
- The name of the tunnel, should be unique within the connection
- connection
Id String - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec
Auth Property MapPsk - Configuration for authenticating with pre-shared key
- local
Address StringName - Public (UpCloud) endpoint address of this tunnel
- remote
Address String - Remote public IP address of the tunnel
- ipsec
Properties Property Map - IPsec configuration for the tunnel
- name 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.
- Operational
State 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.
- Operational
State 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.
- operational
State 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.
- operational
State 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.
- operational
State 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
- 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.
- Connection
Id string - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- Ipsec
Auth UpPsk Cloud. Pulumi. Up Cloud. Inputs. Gateway Connection Tunnel Ipsec Auth Psk - Configuration for authenticating with pre-shared key
- Ipsec
Properties UpCloud. Pulumi. Up Cloud. Inputs. Gateway Connection Tunnel Ipsec Properties - IPsec configuration for the tunnel
- Local
Address stringName - Public (UpCloud) endpoint address of this tunnel
- Name string
- The name of the tunnel, should be unique within the connection
- Operational
State string - Tunnel's current operational, effective state
- Remote
Address string - Remote public IP address of the tunnel
- Uuid string
- The UUID of the tunnel
- Connection
Id string - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- Ipsec
Auth GatewayPsk Connection Tunnel Ipsec Auth Psk Args - Configuration for authenticating with pre-shared key
- Ipsec
Properties GatewayConnection Tunnel Ipsec Properties Args - IPsec configuration for the tunnel
- Local
Address stringName - Public (UpCloud) endpoint address of this tunnel
- Name string
- The name of the tunnel, should be unique within the connection
- Operational
State string - Tunnel's current operational, effective state
- Remote
Address string - Remote public IP address of the tunnel
- Uuid string
- The UUID of the tunnel
- connection
Id String - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec
Auth GatewayPsk Connection Tunnel Ipsec Auth Psk - Configuration for authenticating with pre-shared key
- ipsec
Properties GatewayConnection Tunnel Ipsec Properties - IPsec configuration for the tunnel
- local
Address StringName - Public (UpCloud) endpoint address of this tunnel
- name String
- The name of the tunnel, should be unique within the connection
- operational
State String - Tunnel's current operational, effective state
- remote
Address String - Remote public IP address of the tunnel
- uuid String
- The UUID of the tunnel
- connection
Id string - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec
Auth GatewayPsk Connection Tunnel Ipsec Auth Psk - Configuration for authenticating with pre-shared key
- ipsec
Properties GatewayConnection Tunnel Ipsec Properties - IPsec configuration for the tunnel
- local
Address stringName - Public (UpCloud) endpoint address of this tunnel
- name string
- The name of the tunnel, should be unique within the connection
- operational
State string - Tunnel's current operational, effective state
- remote
Address string - Remote public IP address of the tunnel
- uuid string
- The UUID of the tunnel
- connection_
id str - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec_
auth_ Gatewaypsk Connection Tunnel Ipsec Auth Psk Args - Configuration for authenticating with pre-shared key
- ipsec_
properties GatewayConnection Tunnel Ipsec Properties Args - IPsec configuration for the tunnel
- local_
address_ strname - Public (UpCloud) endpoint address of this tunnel
- name 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
- connection
Id String - ID of the upcloud.GatewayConnection resource to which the tunnel belongs
- ipsec
Auth Property MapPsk - Configuration for authenticating with pre-shared key
- ipsec
Properties Property Map - IPsec configuration for the tunnel
- local
Address StringName - Public (UpCloud) endpoint address of this tunnel
- name String
- The name of the tunnel, should be unique within the connection
- operational
State String - Tunnel's current operational, effective state
- remote
Address String - Remote public IP address of the tunnel
- uuid String
- The UUID of the tunnel
Supporting Types
GatewayConnectionTunnelIpsecAuthPsk, GatewayConnectionTunnelIpsecAuthPskArgs
- Psk 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 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 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 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 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 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
- Child
Rekey intTime - 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.
- Phase1Algorithms List<string>
- List of Phase 1: Proposal algorithms.
- Phase1Dh
Group List<int>Numbers - List of Phase 1 Diffie-Hellman group numbers.
- Phase1Integrity
Algorithms List<string> - List of Phase 1 integrity algorithms.
- Phase2Algorithms List<string>
- List of Phase 2: Security Association algorithms.
- Phase2Dh
Group List<int>Numbers - List of Phase 2 Diffie-Hellman group numbers.
- Phase2Integrity
Algorithms List<string> - List of Phase 2 integrity algorithms.
- Rekey
Time int - IKE SA rekey time in seconds.
- Child
Rekey intTime - 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.
- Phase1Algorithms []string
- List of Phase 1: Proposal algorithms.
- Phase1Dh
Group []intNumbers - List of Phase 1 Diffie-Hellman group numbers.
- Phase1Integrity
Algorithms []string - List of Phase 1 integrity algorithms.
- Phase2Algorithms []string
- List of Phase 2: Security Association algorithms.
- Phase2Dh
Group []intNumbers - List of Phase 2 Diffie-Hellman group numbers.
- Phase2Integrity
Algorithms []string - List of Phase 2 integrity algorithms.
- Rekey
Time int - IKE SA rekey time in seconds.
- child
Rekey IntegerTime - IKE child SA rekey time in seconds.
- dpd
Delay Integer - Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
- dpd
Timeout Integer - Timeout period for DPD reply before considering the peer to be dead, in seconds.
- ike
Lifetime Integer - Maximum IKE SA lifetime in seconds.
- phase1Algorithms List<String>
- List of Phase 1: Proposal algorithms.
- phase1Dh
Group List<Integer>Numbers - List of Phase 1 Diffie-Hellman group numbers.
- phase1Integrity
Algorithms List<String> - List of Phase 1 integrity algorithms.
- phase2Algorithms List<String>
- List of Phase 2: Security Association algorithms.
- phase2Dh
Group List<Integer>Numbers - List of Phase 2 Diffie-Hellman group numbers.
- phase2Integrity
Algorithms List<String> - List of Phase 2 integrity algorithms.
- rekey
Time Integer - IKE SA rekey time in seconds.
- child
Rekey numberTime - IKE child SA rekey time in seconds.
- dpd
Delay number - Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
- dpd
Timeout number - Timeout period for DPD reply before considering the peer to be dead, in seconds.
- ike
Lifetime number - Maximum IKE SA lifetime in seconds.
- phase1Algorithms string[]
- List of Phase 1: Proposal algorithms.
- phase1Dh
Group number[]Numbers - List of Phase 1 Diffie-Hellman group numbers.
- phase1Integrity
Algorithms string[] - List of Phase 1 integrity algorithms.
- phase2Algorithms string[]
- List of Phase 2: Security Association algorithms.
- phase2Dh
Group number[]Numbers - List of Phase 2 Diffie-Hellman group numbers.
- phase2Integrity
Algorithms string[] - List of Phase 2 integrity algorithms.
- rekey
Time number - IKE SA rekey time in seconds.
- child_
rekey_ inttime - 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_ Sequence[int]group_ numbers - List of Phase 1 Diffie-Hellman group numbers.
- phase1_
integrity_ Sequence[str]algorithms - List of Phase 1 integrity algorithms.
- phase2_
algorithms Sequence[str] - List of Phase 2: Security Association algorithms.
- phase2_
dh_ Sequence[int]group_ numbers - List of Phase 2 Diffie-Hellman group numbers.
- phase2_
integrity_ Sequence[str]algorithms - List of Phase 2 integrity algorithms.
- rekey_
time int - IKE SA rekey time in seconds.
- child
Rekey NumberTime - IKE child SA rekey time in seconds.
- dpd
Delay Number - Delay before sending Dead Peer Detection packets if no traffic is detected, in seconds.
- dpd
Timeout Number - Timeout period for DPD reply before considering the peer to be dead, in seconds.
- ike
Lifetime Number - Maximum IKE SA lifetime in seconds.
- phase1Algorithms List<String>
- List of Phase 1: Proposal algorithms.
- phase1Dh
Group List<Number>Numbers - List of Phase 1 Diffie-Hellman group numbers.
- phase1Integrity
Algorithms List<String> - List of Phase 1 integrity algorithms.
- phase2Algorithms List<String>
- List of Phase 2: Security Association algorithms.
- phase2Dh
Group List<Number>Numbers - List of Phase 2 Diffie-Hellman group numbers.
- phase2Integrity
Algorithms List<String> - List of Phase 2 integrity algorithms.
- rekey
Time 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.