outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getVpnConnection
Explore with Pulumi AI
Provides information about 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
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const vpnConnection01 = outscale.getVpnConnection({
filters: [{
name: "vpn_connection_ids",
values: ["vpn-12345678"],
}],
});
import pulumi
import pulumi_outscale as outscale
vpn_connection01 = outscale.get_vpn_connection(filters=[{
"name": "vpn_connection_ids",
"values": ["vpn-12345678"],
}])
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.LookupVpnConnection(ctx, &outscale.LookupVpnConnectionArgs{
Filters: []outscale.GetVpnConnectionFilter{
{
Name: "vpn_connection_ids",
Values: []string{
"vpn-12345678",
},
},
},
}, nil)
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 = Outscale.GetVpnConnection.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetVpnConnectionFilterInputArgs
{
Name = "vpn_connection_ids",
Values = new[]
{
"vpn-12345678",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.OutscaleFunctions;
import com.pulumi.outscale.inputs.GetVpnConnectionArgs;
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) {
final var vpnConnection01 = OutscaleFunctions.getVpnConnection(GetVpnConnectionArgs.builder()
.filters(GetVpnConnectionFilterArgs.builder()
.name("vpn_connection_ids")
.values("vpn-12345678")
.build())
.build());
}
}
variables:
vpnConnection01:
fn::invoke:
function: outscale:getVpnConnection
arguments:
filters:
- name: vpn_connection_ids
values:
- vpn-12345678
Using getVpnConnection
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getVpnConnection(args: GetVpnConnectionArgs, opts?: InvokeOptions): Promise<GetVpnConnectionResult>
function getVpnConnectionOutput(args: GetVpnConnectionOutputArgs, opts?: InvokeOptions): Output<GetVpnConnectionResult>
def get_vpn_connection(filters: Optional[Sequence[GetVpnConnectionFilter]] = None,
id: Optional[str] = None,
static_routes_only: Optional[bool] = None,
vpn_connection_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetVpnConnectionResult
def get_vpn_connection_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetVpnConnectionFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
static_routes_only: Optional[pulumi.Input[bool]] = None,
vpn_connection_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVpnConnectionResult]
func LookupVpnConnection(ctx *Context, args *LookupVpnConnectionArgs, opts ...InvokeOption) (*LookupVpnConnectionResult, error)
func LookupVpnConnectionOutput(ctx *Context, args *LookupVpnConnectionOutputArgs, opts ...InvokeOption) LookupVpnConnectionResultOutput
> Note: This function is named LookupVpnConnection
in the Go SDK.
public static class GetVpnConnection
{
public static Task<GetVpnConnectionResult> InvokeAsync(GetVpnConnectionArgs args, InvokeOptions? opts = null)
public static Output<GetVpnConnectionResult> Invoke(GetVpnConnectionInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVpnConnectionResult> getVpnConnection(GetVpnConnectionArgs args, InvokeOptions options)
public static Output<GetVpnConnectionResult> getVpnConnection(GetVpnConnectionArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getVpnConnection:getVpnConnection
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Vpn Connection Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- Static
Routes boolOnly - 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 stringId - The ID of the VPN connection.
- Filters
[]Get
Vpn Connection Filter - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- Static
Routes boolOnly - 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 stringId - The ID of the VPN connection.
- filters
List<Get
Vpn Connection Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
- static
Routes BooleanOnly - 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 StringId - The ID of the VPN connection.
- filters
Get
Vpn Connection Filter[] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id string
- static
Routes booleanOnly - 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 stringId - The ID of the VPN connection.
- filters
Sequence[Get
Vpn Connection Filter] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id str
- static_
routes_ boolonly - 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_ strid - The ID of the VPN connection.
- filters List<Property Map>
- A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
- static
Routes BooleanOnly - 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 StringId - The ID of the VPN connection.
getVpnConnection Result
The following output properties are available:
- Client
Gateway stringConfiguration - Example configuration for the client gateway.
- Client
Gateway stringId - The ID of the client gateway used on the client end of the connection.
- Connection
Type string - The type of VPN connection (always
ipsec.1
). - Id string
- Request
Id string - Routes
List<Get
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
). - List<Get
Vpn Connection Tag> - One or more tags associated with the VPN connection.
- Vgw
Telemetries List<GetVpn Connection Vgw Telemetry> - Information about the current state of one or more of the VPN tunnels.
- Virtual
Gateway stringId - The ID of the virtual gateway used on the OUTSCALE end of the connection.
- Filters
List<Get
Vpn Connection Filter> - Static
Routes boolOnly - 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 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 used on the client end of the connection.
- Connection
Type string - The type of VPN connection (always
ipsec.1
). - Id string
- Request
Id string - Routes
[]Get
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
). - []Get
Vpn Connection Tag - One or more tags associated with the VPN connection.
- Vgw
Telemetries []GetVpn Connection Vgw Telemetry - Information about the current state of one or more of the VPN tunnels.
- Virtual
Gateway stringId - The ID of the virtual gateway used on the OUTSCALE end of the connection.
- Filters
[]Get
Vpn Connection Filter - Static
Routes boolOnly - 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 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 used on the client end of the connection.
- connection
Type String - The type of VPN connection (always
ipsec.1
). - id String
- request
Id String - routes
List<Get
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
). - List<Get
Vpn Connection Tag> - One or more tags associated with the VPN connection.
- vgw
Telemetries List<GetVpn Connection Vgw Telemetry> - Information about the current state of one or more of the VPN tunnels.
- virtual
Gateway StringId - The ID of the virtual gateway used on the OUTSCALE end of the connection.
- filters
List<Get
Vpn Connection Filter> - static
Routes BooleanOnly - 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 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 used on the client end of the connection.
- connection
Type string - The type of VPN connection (always
ipsec.1
). - id string
- request
Id string - routes
Get
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
). - Get
Vpn Connection Tag[] - One or more tags associated with the VPN connection.
- vgw
Telemetries GetVpn Connection Vgw Telemetry[] - Information about the current state of one or more of the VPN tunnels.
- virtual
Gateway stringId - The ID of the virtual gateway used on the OUTSCALE end of the connection.
- filters
Get
Vpn Connection Filter[] - static
Routes booleanOnly - 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 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 used on the client end of the connection.
- connection_
type str - The type of VPN connection (always
ipsec.1
). - id str
- request_
id str - routes
Sequence[Get
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
). - Sequence[Get
Vpn Connection Tag] - One or more tags associated with the VPN connection.
- vgw_
telemetries Sequence[GetVpn Connection Vgw Telemetry] - Information about the current state of one or more of the VPN tunnels.
- virtual_
gateway_ strid - The ID of the virtual gateway used on the OUTSCALE end of the connection.
- filters
Sequence[Get
Vpn Connection Filter] - static_
routes_ boolonly - 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_ 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 used on the client end of the connection.
- connection
Type String - The type of VPN connection (always
ipsec.1
). - id String
- 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
). - List<Property Map>
- One or more tags associated with the VPN connection.
- 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 used on the OUTSCALE end of the connection.
- filters List<Property Map>
- static
Routes BooleanOnly - 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 StringId - The ID of the VPN connection.
Supporting Types
GetVpnConnectionFilter
GetVpnConnectionRoute
- 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
).
GetVpnConnectionTag
GetVpnConnectionVgwTelemetry
- 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.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.