outscale.VpnConnection
Explore with Pulumi AI
Manages a VPN connection.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resources
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const clientGateway01 = new outscale.ClientGateway("clientGateway01", {
bgpAsn: 65000,
connectionType: "ipsec.1",
publicIp: "111.11.11.111",
});
const virtualGateway01 = new outscale.VirtualGateway("virtualGateway01", {connectionType: "ipsec.1"});
import pulumi
import pulumi_outscale as outscale
client_gateway01 = outscale.ClientGateway("clientGateway01",
bgp_asn=65000,
connection_type="ipsec.1",
public_ip="111.11.11.111")
virtual_gateway01 = outscale.VirtualGateway("virtualGateway01", connection_type="ipsec.1")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewClientGateway(ctx, "clientGateway01", &outscale.ClientGatewayArgs{
BgpAsn: pulumi.Float64(65000),
ConnectionType: pulumi.String("ipsec.1"),
PublicIp: pulumi.String("111.11.11.111"),
})
if err != nil {
return err
}
_, err = outscale.NewVirtualGateway(ctx, "virtualGateway01", &outscale.VirtualGatewayArgs{
ConnectionType: pulumi.String("ipsec.1"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var clientGateway01 = new Outscale.ClientGateway("clientGateway01", new()
{
BgpAsn = 65000,
ConnectionType = "ipsec.1",
PublicIp = "111.11.11.111",
});
var virtualGateway01 = new Outscale.VirtualGateway("virtualGateway01", new()
{
ConnectionType = "ipsec.1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.ClientGateway;
import com.pulumi.outscale.ClientGatewayArgs;
import com.pulumi.outscale.VirtualGateway;
import com.pulumi.outscale.VirtualGatewayArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var clientGateway01 = new ClientGateway("clientGateway01", ClientGatewayArgs.builder()
.bgpAsn(65000)
.connectionType("ipsec.1")
.publicIp("111.11.11.111")
.build());
var virtualGateway01 = new VirtualGateway("virtualGateway01", VirtualGatewayArgs.builder()
.connectionType("ipsec.1")
.build());
}
}
resources:
clientGateway01:
type: outscale:ClientGateway
properties:
bgpAsn: 65000
connectionType: ipsec.1
publicIp: 111.11.11.111
virtualGateway01:
type: outscale:VirtualGateway
properties:
connectionType: ipsec.1
Create a VPN connection
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const vpnConnection01 = new outscale.VpnConnection("vpnConnection01", {
clientGatewayId: outscale_client_gateway.client_gateway01.client_gateway_id,
virtualGatewayId: outscale_virtual_gateway.virtual_gateway01.virtual_gateway_id,
connectionType: "ipsec.1",
staticRoutesOnly: true,
tags: [{
key: "Name",
value: "vpn01",
}],
});
import pulumi
import pulumi_outscale as outscale
vpn_connection01 = outscale.VpnConnection("vpnConnection01",
client_gateway_id=outscale_client_gateway["client_gateway01"]["client_gateway_id"],
virtual_gateway_id=outscale_virtual_gateway["virtual_gateway01"]["virtual_gateway_id"],
connection_type="ipsec.1",
static_routes_only=True,
tags=[{
"key": "Name",
"value": "vpn01",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewVpnConnection(ctx, "vpnConnection01", &outscale.VpnConnectionArgs{
ClientGatewayId: pulumi.Any(outscale_client_gateway.Client_gateway01.Client_gateway_id),
VirtualGatewayId: pulumi.Any(outscale_virtual_gateway.Virtual_gateway01.Virtual_gateway_id),
ConnectionType: pulumi.String("ipsec.1"),
StaticRoutesOnly: pulumi.Bool(true),
Tags: outscale.VpnConnectionTagArray{
&outscale.VpnConnectionTagArgs{
Key: pulumi.String("Name"),
Value: pulumi.String("vpn01"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var vpnConnection01 = new Outscale.VpnConnection("vpnConnection01", new()
{
ClientGatewayId = outscale_client_gateway.Client_gateway01.Client_gateway_id,
VirtualGatewayId = outscale_virtual_gateway.Virtual_gateway01.Virtual_gateway_id,
ConnectionType = "ipsec.1",
StaticRoutesOnly = true,
Tags = new[]
{
new Outscale.Inputs.VpnConnectionTagArgs
{
Key = "Name",
Value = "vpn01",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.VpnConnection;
import com.pulumi.outscale.VpnConnectionArgs;
import com.pulumi.outscale.inputs.VpnConnectionTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var vpnConnection01 = new VpnConnection("vpnConnection01", VpnConnectionArgs.builder()
.clientGatewayId(outscale_client_gateway.client_gateway01().client_gateway_id())
.virtualGatewayId(outscale_virtual_gateway.virtual_gateway01().virtual_gateway_id())
.connectionType("ipsec.1")
.staticRoutesOnly(true)
.tags(VpnConnectionTagArgs.builder()
.key("Name")
.value("vpn01")
.build())
.build());
}
}
resources:
vpnConnection01:
type: outscale:VpnConnection
properties:
clientGatewayId: ${outscale_client_gateway.client_gateway01.client_gateway_id}
virtualGatewayId: ${outscale_virtual_gateway.virtual_gateway01.virtual_gateway_id}
connectionType: ipsec.1
staticRoutesOnly: true
tags:
- key: Name
value: vpn01
Create VpnConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpnConnection(name: string, args: VpnConnectionArgs, opts?: CustomResourceOptions);
@overload
def VpnConnection(resource_name: str,
args: VpnConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VpnConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
client_gateway_id: Optional[str] = None,
connection_type: Optional[str] = None,
virtual_gateway_id: Optional[str] = None,
outscale_vpn_connection_id: Optional[str] = None,
static_routes_only: Optional[bool] = None,
tags: Optional[Sequence[VpnConnectionTagArgs]] = None,
timeouts: Optional[VpnConnectionTimeoutsArgs] = None)
func NewVpnConnection(ctx *Context, name string, args VpnConnectionArgs, opts ...ResourceOption) (*VpnConnection, error)
public VpnConnection(string name, VpnConnectionArgs args, CustomResourceOptions? opts = null)
public VpnConnection(String name, VpnConnectionArgs args)
public VpnConnection(String name, VpnConnectionArgs args, CustomResourceOptions options)
type: outscale:VpnConnection
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 VpnConnectionArgs
- 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 VpnConnectionArgs
- 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 VpnConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpnConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpnConnectionArgs
- 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 vpnConnectionResource = new Outscale.VpnConnection("vpnConnectionResource", new()
{
ClientGatewayId = "string",
ConnectionType = "string",
VirtualGatewayId = "string",
OutscaleVpnConnectionId = "string",
StaticRoutesOnly = false,
Tags = new[]
{
new Outscale.Inputs.VpnConnectionTagArgs
{
Key = "string",
Value = "string",
},
},
Timeouts = new Outscale.Inputs.VpnConnectionTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := outscale.NewVpnConnection(ctx, "vpnConnectionResource", &outscale.VpnConnectionArgs{
ClientGatewayId: pulumi.String("string"),
ConnectionType: pulumi.String("string"),
VirtualGatewayId: pulumi.String("string"),
OutscaleVpnConnectionId: pulumi.String("string"),
StaticRoutesOnly: pulumi.Bool(false),
Tags: .VpnConnectionTagArray{
&.VpnConnectionTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Timeouts: &.VpnConnectionTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var vpnConnectionResource = new VpnConnection("vpnConnectionResource", VpnConnectionArgs.builder()
.clientGatewayId("string")
.connectionType("string")
.virtualGatewayId("string")
.outscaleVpnConnectionId("string")
.staticRoutesOnly(false)
.tags(VpnConnectionTagArgs.builder()
.key("string")
.value("string")
.build())
.timeouts(VpnConnectionTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
vpn_connection_resource = outscale.VpnConnection("vpnConnectionResource",
client_gateway_id="string",
connection_type="string",
virtual_gateway_id="string",
outscale_vpn_connection_id="string",
static_routes_only=False,
tags=[{
"key": "string",
"value": "string",
}],
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const vpnConnectionResource = new outscale.VpnConnection("vpnConnectionResource", {
clientGatewayId: "string",
connectionType: "string",
virtualGatewayId: "string",
outscaleVpnConnectionId: "string",
staticRoutesOnly: false,
tags: [{
key: "string",
value: "string",
}],
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: outscale:VpnConnection
properties:
clientGatewayId: string
connectionType: string
outscaleVpnConnectionId: string
staticRoutesOnly: false
tags:
- key: string
value: string
timeouts:
create: string
delete: string
update: string
virtualGatewayId: string
VpnConnection 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 VpnConnection resource accepts the following input properties:
- Client
Gateway stringId - The ID of the client gateway.
- Connection
Type string - The type of VPN connection (always
ipsec.1
). - Virtual
Gateway stringId - The ID of the virtual gateway.
- Outscale
Vpn stringConnection Id - Static
Routes boolOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- List<Vpn
Connection Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vpn
Connection Timeouts
- Client
Gateway stringId - The ID of the client gateway.
- Connection
Type string - The type of VPN connection (always
ipsec.1
). - Virtual
Gateway stringId - The ID of the virtual gateway.
- Outscale
Vpn stringConnection Id - Static
Routes boolOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- []Vpn
Connection Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vpn
Connection Timeouts Args
- client
Gateway StringId - The ID of the client gateway.
- connection
Type String - The type of VPN connection (always
ipsec.1
). - virtual
Gateway StringId - The ID of the virtual gateway.
- outscale
Vpn StringConnection Id - static
Routes BooleanOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- List<Vpn
Connection Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vpn
Connection Timeouts
- client
Gateway stringId - The ID of the client gateway.
- connection
Type string - The type of VPN connection (always
ipsec.1
). - virtual
Gateway stringId - The ID of the virtual gateway.
- outscale
Vpn stringConnection Id - static
Routes booleanOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- Vpn
Connection Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vpn
Connection Timeouts
- client_
gateway_ strid - The ID of the client gateway.
- connection_
type str - The type of VPN connection (always
ipsec.1
). - virtual_
gateway_ strid - The ID of the virtual gateway.
- outscale_
vpn_ strconnection_ id - static_
routes_ boolonly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- Sequence[Vpn
Connection Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vpn
Connection Timeouts Args
- client
Gateway StringId - The ID of the client gateway.
- connection
Type String - The type of VPN connection (always
ipsec.1
). - virtual
Gateway StringId - The ID of the virtual gateway.
- outscale
Vpn StringConnection Id - static
Routes BooleanOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the VpnConnection resource produces the following output properties:
- Client
Gateway stringConfiguration - Example configuration for the client gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- Request
Id string - Routes
List<Vpn
Connection Route> - Information about one or more static routes associated with the VPN connection, if any.
- State string
- The state of the IPSEC tunnel (
UP
|DOWN
). - Vgw
Telemetries List<VpnConnection Vgw Telemetry> - Information about the current state of one or more of the VPN tunnels.
- Vpn
Connection stringId - The ID of the VPN connection.
- Client
Gateway stringConfiguration - Example configuration for the client gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- Request
Id string - Routes
[]Vpn
Connection Route Type - Information about one or more static routes associated with the VPN connection, if any.
- State string
- The state of the IPSEC tunnel (
UP
|DOWN
). - Vgw
Telemetries []VpnConnection Vgw Telemetry - Information about the current state of one or more of the VPN tunnels.
- Vpn
Connection stringId - The ID of the VPN connection.
- client
Gateway StringConfiguration - Example configuration for the client gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- request
Id String - routes
List<Vpn
Connection Route> - Information about one or more static routes associated with the VPN connection, if any.
- state String
- The state of the IPSEC tunnel (
UP
|DOWN
). - vgw
Telemetries List<VpnConnection Vgw Telemetry> - Information about the current state of one or more of the VPN tunnels.
- vpn
Connection StringId - The ID of the VPN connection.
- client
Gateway stringConfiguration - Example configuration for the client gateway.
- id string
- The provider-assigned unique ID for this managed resource.
- request
Id string - routes
Vpn
Connection Route[] - Information about one or more static routes associated with the VPN connection, if any.
- state string
- The state of the IPSEC tunnel (
UP
|DOWN
). - vgw
Telemetries VpnConnection Vgw Telemetry[] - Information about the current state of one or more of the VPN tunnels.
- vpn
Connection stringId - The ID of the VPN connection.
- client_
gateway_ strconfiguration - Example configuration for the client gateway.
- id str
- The provider-assigned unique ID for this managed resource.
- request_
id str - routes
Sequence[Vpn
Connection Route] - Information about one or more static routes associated with the VPN connection, if any.
- state str
- The state of the IPSEC tunnel (
UP
|DOWN
). - vgw_
telemetries Sequence[VpnConnection Vgw Telemetry] - Information about the current state of one or more of the VPN tunnels.
- vpn_
connection_ strid - The ID of the VPN connection.
- client
Gateway StringConfiguration - Example configuration for the client gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- request
Id String - routes List<Property Map>
- Information about one or more static routes associated with the VPN connection, if any.
- state String
- The state of the IPSEC tunnel (
UP
|DOWN
). - vgw
Telemetries List<Property Map> - Information about the current state of one or more of the VPN tunnels.
- vpn
Connection StringId - The ID of the VPN connection.
Look up Existing VpnConnection Resource
Get an existing VpnConnection 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?: VpnConnectionState, opts?: CustomResourceOptions): VpnConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
client_gateway_configuration: Optional[str] = None,
client_gateway_id: Optional[str] = None,
connection_type: Optional[str] = None,
outscale_vpn_connection_id: Optional[str] = None,
request_id: Optional[str] = None,
routes: Optional[Sequence[VpnConnectionRouteArgs]] = None,
state: Optional[str] = None,
static_routes_only: Optional[bool] = None,
tags: Optional[Sequence[VpnConnectionTagArgs]] = None,
timeouts: Optional[VpnConnectionTimeoutsArgs] = None,
vgw_telemetries: Optional[Sequence[VpnConnectionVgwTelemetryArgs]] = None,
virtual_gateway_id: Optional[str] = None,
vpn_connection_id: Optional[str] = None) -> VpnConnection
func GetVpnConnection(ctx *Context, name string, id IDInput, state *VpnConnectionState, opts ...ResourceOption) (*VpnConnection, error)
public static VpnConnection Get(string name, Input<string> id, VpnConnectionState? state, CustomResourceOptions? opts = null)
public static VpnConnection get(String name, Output<String> id, VpnConnectionState state, CustomResourceOptions options)
resources: _: type: outscale:VpnConnection 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.
- Client
Gateway stringConfiguration - Example configuration for the client gateway.
- Client
Gateway stringId - The ID of the client gateway.
- Connection
Type string - The type of VPN connection (always
ipsec.1
). - Outscale
Vpn stringConnection Id - Request
Id string - Routes
List<Vpn
Connection Route> - Information about one or more static routes associated with the VPN connection, if any.
- State string
- The state of the IPSEC tunnel (
UP
|DOWN
). - Static
Routes boolOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- List<Vpn
Connection Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vpn
Connection Timeouts - Vgw
Telemetries List<VpnConnection Vgw Telemetry> - Information about the current state of one or more of the VPN tunnels.
- Virtual
Gateway stringId - The ID of the virtual gateway.
- Vpn
Connection stringId - The ID of the VPN connection.
- Client
Gateway stringConfiguration - Example configuration for the client gateway.
- Client
Gateway stringId - The ID of the client gateway.
- Connection
Type string - The type of VPN connection (always
ipsec.1
). - Outscale
Vpn stringConnection Id - Request
Id string - Routes
[]Vpn
Connection Route Type Args - Information about one or more static routes associated with the VPN connection, if any.
- State string
- The state of the IPSEC tunnel (
UP
|DOWN
). - Static
Routes boolOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- []Vpn
Connection Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vpn
Connection Timeouts Args - Vgw
Telemetries []VpnConnection Vgw Telemetry Args - Information about the current state of one or more of the VPN tunnels.
- Virtual
Gateway stringId - The ID of the virtual gateway.
- Vpn
Connection stringId - The ID of the VPN connection.
- client
Gateway StringConfiguration - Example configuration for the client gateway.
- client
Gateway StringId - The ID of the client gateway.
- connection
Type String - The type of VPN connection (always
ipsec.1
). - outscale
Vpn StringConnection Id - request
Id String - routes
List<Vpn
Connection Route> - Information about one or more static routes associated with the VPN connection, if any.
- state String
- The state of the IPSEC tunnel (
UP
|DOWN
). - static
Routes BooleanOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- List<Vpn
Connection Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vpn
Connection Timeouts - vgw
Telemetries List<VpnConnection Vgw Telemetry> - Information about the current state of one or more of the VPN tunnels.
- virtual
Gateway StringId - The ID of the virtual gateway.
- vpn
Connection StringId - The ID of the VPN connection.
- client
Gateway stringConfiguration - Example configuration for the client gateway.
- client
Gateway stringId - The ID of the client gateway.
- connection
Type string - The type of VPN connection (always
ipsec.1
). - outscale
Vpn stringConnection Id - request
Id string - routes
Vpn
Connection Route[] - Information about one or more static routes associated with the VPN connection, if any.
- state string
- The state of the IPSEC tunnel (
UP
|DOWN
). - static
Routes booleanOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- Vpn
Connection Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vpn
Connection Timeouts - vgw
Telemetries VpnConnection Vgw Telemetry[] - Information about the current state of one or more of the VPN tunnels.
- virtual
Gateway stringId - The ID of the virtual gateway.
- vpn
Connection stringId - The ID of the VPN connection.
- client_
gateway_ strconfiguration - Example configuration for the client gateway.
- client_
gateway_ strid - The ID of the client gateway.
- connection_
type str - The type of VPN connection (always
ipsec.1
). - outscale_
vpn_ strconnection_ id - request_
id str - routes
Sequence[Vpn
Connection Route Args] - Information about one or more static routes associated with the VPN connection, if any.
- state str
- The state of the IPSEC tunnel (
UP
|DOWN
). - static_
routes_ boolonly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- Sequence[Vpn
Connection Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vpn
Connection Timeouts Args - vgw_
telemetries Sequence[VpnConnection Vgw Telemetry Args] - Information about the current state of one or more of the VPN tunnels.
- virtual_
gateway_ strid - The ID of the virtual gateway.
- vpn_
connection_ strid - The ID of the VPN connection.
- client
Gateway StringConfiguration - Example configuration for the client gateway.
- client
Gateway StringId - The ID of the client gateway.
- connection
Type String - The type of VPN connection (always
ipsec.1
). - outscale
Vpn StringConnection Id - request
Id String - routes List<Property Map>
- Information about one or more static routes associated with the VPN connection, if any.
- state String
- The state of the IPSEC tunnel (
UP
|DOWN
). - static
Routes BooleanOnly - By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
- vgw
Telemetries List<Property Map> - Information about the current state of one or more of the VPN tunnels.
- virtual
Gateway StringId - The ID of the virtual gateway.
- vpn
Connection StringId - The ID of the VPN connection.
Supporting Types
VpnConnectionRoute, VpnConnectionRouteArgs
- Destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - Route
Type string - The type of route (always
static
). - State string
- The state of the IPSEC tunnel (
UP
|DOWN
).
- Destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - Route
Type string - The type of route (always
static
). - State string
- The state of the IPSEC tunnel (
UP
|DOWN
).
- destination
Ip StringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route
Type String - The type of route (always
static
). - state String
- The state of the IPSEC tunnel (
UP
|DOWN
).
- destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route
Type string - The type of route (always
static
). - state string
- The state of the IPSEC tunnel (
UP
|DOWN
).
- destination_
ip_ strrange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route_
type str - The type of route (always
static
). - state str
- The state of the IPSEC tunnel (
UP
|DOWN
).
- destination
Ip StringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route
Type String - The type of route (always
static
). - state String
- The state of the IPSEC tunnel (
UP
|DOWN
).
VpnConnectionTag, VpnConnectionTagArgs
VpnConnectionTimeouts, VpnConnectionTimeoutsArgs
VpnConnectionVgwTelemetry, VpnConnectionVgwTelemetryArgs
- Accepted
Route doubleCount - The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
- Last
State stringChange Date - The date and time (UTC) of the latest state update.
- Outside
Ip stringAddress - The IP on the OUTSCALE side of the tunnel.
- State string
- The state of the IPSEC tunnel (
UP
|DOWN
). - State
Description string - A description of the current state of the tunnel.
- Accepted
Route float64Count - The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
- Last
State stringChange Date - The date and time (UTC) of the latest state update.
- Outside
Ip stringAddress - The IP on the OUTSCALE side of the tunnel.
- State string
- The state of the IPSEC tunnel (
UP
|DOWN
). - State
Description string - A description of the current state of the tunnel.
- accepted
Route DoubleCount - The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
- last
State StringChange Date - The date and time (UTC) of the latest state update.
- outside
Ip StringAddress - The IP on the OUTSCALE side of the tunnel.
- state String
- The state of the IPSEC tunnel (
UP
|DOWN
). - state
Description String - A description of the current state of the tunnel.
- accepted
Route numberCount - The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
- last
State stringChange Date - The date and time (UTC) of the latest state update.
- outside
Ip stringAddress - The IP on the OUTSCALE side of the tunnel.
- state string
- The state of the IPSEC tunnel (
UP
|DOWN
). - state
Description string - A description of the current state of the tunnel.
- accepted_
route_ floatcount - The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
- last_
state_ strchange_ date - The date and time (UTC) of the latest state update.
- outside_
ip_ straddress - The IP on the OUTSCALE side of the tunnel.
- state str
- The state of the IPSEC tunnel (
UP
|DOWN
). - state_
description str - A description of the current state of the tunnel.
- accepted
Route NumberCount - The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
- last
State StringChange Date - The date and time (UTC) of the latest state update.
- outside
Ip StringAddress - The IP on the OUTSCALE side of the tunnel.
- state String
- The state of the IPSEC tunnel (
UP
|DOWN
). - state
Description String - A description of the current state of the tunnel.
Import
A VPN connection can be imported using its ID. For example:
console
$ pulumi import outscale:index/vpnConnection:VpnConnection ImportedVPN vpn-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.