1. Packages
  2. Scaleway
  3. API Docs
  4. s2svpn
  5. getConnection
Viewing docs for Scaleway v1.44.1
published on Monday, Mar 9, 2026 by pulumiverse
scaleway logo
Viewing docs for Scaleway v1.44.1
published on Monday, Mar 9, 2026 by pulumiverse

    For further information refer to the Site-to-Site VPN API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    // Get info by connection ID
    const myConnection = scaleway.s2svpn.getConnection({
        connectionId: "11111111-1111-1111-1111-111111111111",
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    
    # Get info by connection ID
    my_connection = scaleway.s2svpn.get_connection(connection_id="11111111-1111-1111-1111-111111111111")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/s2svpn"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Get info by connection ID
    		_, err := s2svpn.LookupConnection(ctx, &s2svpn.LookupConnectionArgs{
    			ConnectionId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        // Get info by connection ID
        var myConnection = Scaleway.S2svpn.GetConnection.Invoke(new()
        {
            ConnectionId = "11111111-1111-1111-1111-111111111111",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.s2svpn.S2svpnFunctions;
    import com.pulumi.scaleway.s2svpn.inputs.GetConnectionArgs;
    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) {
            // Get info by connection ID
            final var myConnection = S2svpnFunctions.getConnection(GetConnectionArgs.builder()
                .connectionId("11111111-1111-1111-1111-111111111111")
                .build());
    
        }
    }
    
    variables:
      # Get info by connection ID
      myConnection:
        fn::invoke:
          function: scaleway:s2svpn:getConnection
          arguments:
            connectionId: 11111111-1111-1111-1111-111111111111
    
    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    // Get info by name
    const myConnection = scaleway.s2svpn.getConnection({
        name: "foobar",
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    
    # Get info by name
    my_connection = scaleway.s2svpn.get_connection(name="foobar")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/s2svpn"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Get info by name
    		_, err := s2svpn.LookupConnection(ctx, &s2svpn.LookupConnectionArgs{
    			Name: pulumi.StringRef("foobar"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        // Get info by name
        var myConnection = Scaleway.S2svpn.GetConnection.Invoke(new()
        {
            Name = "foobar",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.s2svpn.S2svpnFunctions;
    import com.pulumi.scaleway.s2svpn.inputs.GetConnectionArgs;
    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) {
            // Get info by name
            final var myConnection = S2svpnFunctions.getConnection(GetConnectionArgs.builder()
                .name("foobar")
                .build());
    
        }
    }
    
    variables:
      # Get info by name
      myConnection:
        fn::invoke:
          function: scaleway:s2svpn:getConnection
          arguments:
            name: foobar
    

    Using getConnection

    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 getConnection(args: GetConnectionArgs, opts?: InvokeOptions): Promise<GetConnectionResult>
    function getConnectionOutput(args: GetConnectionOutputArgs, opts?: InvokeOptions): Output<GetConnectionResult>
    def get_connection(connection_id: Optional[str] = None,
                       name: Optional[str] = None,
                       project_id: Optional[str] = None,
                       region: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetConnectionResult
    def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
                       name: Optional[pulumi.Input[str]] = None,
                       project_id: Optional[pulumi.Input[str]] = None,
                       region: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetConnectionResult]
    func LookupConnection(ctx *Context, args *LookupConnectionArgs, opts ...InvokeOption) (*LookupConnectionResult, error)
    func LookupConnectionOutput(ctx *Context, args *LookupConnectionOutputArgs, opts ...InvokeOption) LookupConnectionResultOutput

    > Note: This function is named LookupConnection in the Go SDK.

    public static class GetConnection 
    {
        public static Task<GetConnectionResult> InvokeAsync(GetConnectionArgs args, InvokeOptions? opts = null)
        public static Output<GetConnectionResult> Invoke(GetConnectionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
    public static Output<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scaleway:s2svpn/getConnection:getConnection
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ConnectionId string

    The connection ID.

    Note You must specify at least one: name and/or connection_id.

    Name string
    The name of the connection.
    ProjectId string
    The ID of the project the connection is associated with.
    Region string
    region) The region in which the connection exists.
    ConnectionId string

    The connection ID.

    Note You must specify at least one: name and/or connection_id.

    Name string
    The name of the connection.
    ProjectId string
    The ID of the project the connection is associated with.
    Region string
    region) The region in which the connection exists.
    connectionId String

    The connection ID.

    Note You must specify at least one: name and/or connection_id.

    name String
    The name of the connection.
    projectId String
    The ID of the project the connection is associated with.
    region String
    region) The region in which the connection exists.
    connectionId string

    The connection ID.

    Note You must specify at least one: name and/or connection_id.

    name string
    The name of the connection.
    projectId string
    The ID of the project the connection is associated with.
    region string
    region) The region in which the connection exists.
    connection_id str

    The connection ID.

    Note You must specify at least one: name and/or connection_id.

    name str
    The name of the connection.
    project_id str
    The ID of the project the connection is associated with.
    region str
    region) The region in which the connection exists.
    connectionId String

    The connection ID.

    Note You must specify at least one: name and/or connection_id.

    name String
    The name of the connection.
    projectId String
    The ID of the project the connection is associated with.
    region String
    region) The region in which the connection exists.

    getConnection Result

    The following output properties are available:

    BgpConfigIpv4s List<Pulumiverse.Scaleway.S2svpn.Outputs.GetConnectionBgpConfigIpv4>
    The BGP IPv4 configuration.
    BgpConfigIpv6s List<Pulumiverse.Scaleway.S2svpn.Outputs.GetConnectionBgpConfigIpv6>
    The BGP IPv6 configuration.
    BgpSessionIpv4s List<Pulumiverse.Scaleway.S2svpn.Outputs.GetConnectionBgpSessionIpv4>
    The BGP IPv4 session information.
    BgpSessionIpv6s List<Pulumiverse.Scaleway.S2svpn.Outputs.GetConnectionBgpSessionIpv6>
    The BGP IPv6 session information.
    BgpStatusIpv4 string
    The status of the BGP IPv4 session.
    BgpStatusIpv6 string
    The status of the BGP IPv6 session.
    CreatedAt string
    The date and time of creation of the connection.
    CustomerGatewayId string
    The ID of the customer gateway attached to the connection.
    EnableRoutePropagation bool
    Whether route propagation is enabled.
    EspCiphers List<Pulumiverse.Scaleway.S2svpn.Outputs.GetConnectionEspCipher>
    The ESP ciphers configuration.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ikev2Ciphers List<Pulumiverse.Scaleway.S2svpn.Outputs.GetConnectionIkev2Cipher>
    The IKEv2 ciphers configuration.
    InitiationPolicy string
    Who initiates the IPSec tunnel.
    IsIpv6 bool
    Whether the IPSec tunnel uses IPv6.
    OrganizationId string
    The Organization ID the connection is associated with.
    RoutePropagationEnabled bool
    Whether route propagation is currently enabled.
    SecretId string
    The ID of the secret containing the pre-shared key (PSK).
    SecretVersion int
    The version of the secret containing the PSK.
    Status string
    The status of the connection.
    Tags List<string>
    The tags associated with the connection.
    TunnelStatus string
    The status of the IPSec tunnel.
    UpdatedAt string
    The date and time of the last update of the connection.
    VpnGatewayId string
    The ID of the VPN gateway attached to the connection.
    ConnectionId string
    Name string
    ProjectId string
    Region string
    BgpConfigIpv4s []GetConnectionBgpConfigIpv4
    The BGP IPv4 configuration.
    BgpConfigIpv6s []GetConnectionBgpConfigIpv6
    The BGP IPv6 configuration.
    BgpSessionIpv4s []GetConnectionBgpSessionIpv4
    The BGP IPv4 session information.
    BgpSessionIpv6s []GetConnectionBgpSessionIpv6
    The BGP IPv6 session information.
    BgpStatusIpv4 string
    The status of the BGP IPv4 session.
    BgpStatusIpv6 string
    The status of the BGP IPv6 session.
    CreatedAt string
    The date and time of creation of the connection.
    CustomerGatewayId string
    The ID of the customer gateway attached to the connection.
    EnableRoutePropagation bool
    Whether route propagation is enabled.
    EspCiphers []GetConnectionEspCipher
    The ESP ciphers configuration.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ikev2Ciphers []GetConnectionIkev2Cipher
    The IKEv2 ciphers configuration.
    InitiationPolicy string
    Who initiates the IPSec tunnel.
    IsIpv6 bool
    Whether the IPSec tunnel uses IPv6.
    OrganizationId string
    The Organization ID the connection is associated with.
    RoutePropagationEnabled bool
    Whether route propagation is currently enabled.
    SecretId string
    The ID of the secret containing the pre-shared key (PSK).
    SecretVersion int
    The version of the secret containing the PSK.
    Status string
    The status of the connection.
    Tags []string
    The tags associated with the connection.
    TunnelStatus string
    The status of the IPSec tunnel.
    UpdatedAt string
    The date and time of the last update of the connection.
    VpnGatewayId string
    The ID of the VPN gateway attached to the connection.
    ConnectionId string
    Name string
    ProjectId string
    Region string
    bgpConfigIpv4s List<GetConnectionBgpConfigIpv4>
    The BGP IPv4 configuration.
    bgpConfigIpv6s List<GetConnectionBgpConfigIpv6>
    The BGP IPv6 configuration.
    bgpSessionIpv4s List<GetConnectionBgpSessionIpv4>
    The BGP IPv4 session information.
    bgpSessionIpv6s List<GetConnectionBgpSessionIpv6>
    The BGP IPv6 session information.
    bgpStatusIpv4 String
    The status of the BGP IPv4 session.
    bgpStatusIpv6 String
    The status of the BGP IPv6 session.
    createdAt String
    The date and time of creation of the connection.
    customerGatewayId String
    The ID of the customer gateway attached to the connection.
    enableRoutePropagation Boolean
    Whether route propagation is enabled.
    espCiphers List<GetConnectionEspCipher>
    The ESP ciphers configuration.
    id String
    The provider-assigned unique ID for this managed resource.
    ikev2Ciphers List<GetConnectionIkev2Cipher>
    The IKEv2 ciphers configuration.
    initiationPolicy String
    Who initiates the IPSec tunnel.
    isIpv6 Boolean
    Whether the IPSec tunnel uses IPv6.
    organizationId String
    The Organization ID the connection is associated with.
    routePropagationEnabled Boolean
    Whether route propagation is currently enabled.
    secretId String
    The ID of the secret containing the pre-shared key (PSK).
    secretVersion Integer
    The version of the secret containing the PSK.
    status String
    The status of the connection.
    tags List<String>
    The tags associated with the connection.
    tunnelStatus String
    The status of the IPSec tunnel.
    updatedAt String
    The date and time of the last update of the connection.
    vpnGatewayId String
    The ID of the VPN gateway attached to the connection.
    connectionId String
    name String
    projectId String
    region String
    bgpConfigIpv4s GetConnectionBgpConfigIpv4[]
    The BGP IPv4 configuration.
    bgpConfigIpv6s GetConnectionBgpConfigIpv6[]
    The BGP IPv6 configuration.
    bgpSessionIpv4s GetConnectionBgpSessionIpv4[]
    The BGP IPv4 session information.
    bgpSessionIpv6s GetConnectionBgpSessionIpv6[]
    The BGP IPv6 session information.
    bgpStatusIpv4 string
    The status of the BGP IPv4 session.
    bgpStatusIpv6 string
    The status of the BGP IPv6 session.
    createdAt string
    The date and time of creation of the connection.
    customerGatewayId string
    The ID of the customer gateway attached to the connection.
    enableRoutePropagation boolean
    Whether route propagation is enabled.
    espCiphers GetConnectionEspCipher[]
    The ESP ciphers configuration.
    id string
    The provider-assigned unique ID for this managed resource.
    ikev2Ciphers GetConnectionIkev2Cipher[]
    The IKEv2 ciphers configuration.
    initiationPolicy string
    Who initiates the IPSec tunnel.
    isIpv6 boolean
    Whether the IPSec tunnel uses IPv6.
    organizationId string
    The Organization ID the connection is associated with.
    routePropagationEnabled boolean
    Whether route propagation is currently enabled.
    secretId string
    The ID of the secret containing the pre-shared key (PSK).
    secretVersion number
    The version of the secret containing the PSK.
    status string
    The status of the connection.
    tags string[]
    The tags associated with the connection.
    tunnelStatus string
    The status of the IPSec tunnel.
    updatedAt string
    The date and time of the last update of the connection.
    vpnGatewayId string
    The ID of the VPN gateway attached to the connection.
    connectionId string
    name string
    projectId string
    region string
    bgp_config_ipv4s Sequence[GetConnectionBgpConfigIpv4]
    The BGP IPv4 configuration.
    bgp_config_ipv6s Sequence[GetConnectionBgpConfigIpv6]
    The BGP IPv6 configuration.
    bgp_session_ipv4s Sequence[GetConnectionBgpSessionIpv4]
    The BGP IPv4 session information.
    bgp_session_ipv6s Sequence[GetConnectionBgpSessionIpv6]
    The BGP IPv6 session information.
    bgp_status_ipv4 str
    The status of the BGP IPv4 session.
    bgp_status_ipv6 str
    The status of the BGP IPv6 session.
    created_at str
    The date and time of creation of the connection.
    customer_gateway_id str
    The ID of the customer gateway attached to the connection.
    enable_route_propagation bool
    Whether route propagation is enabled.
    esp_ciphers Sequence[GetConnectionEspCipher]
    The ESP ciphers configuration.
    id str
    The provider-assigned unique ID for this managed resource.
    ikev2_ciphers Sequence[GetConnectionIkev2Cipher]
    The IKEv2 ciphers configuration.
    initiation_policy str
    Who initiates the IPSec tunnel.
    is_ipv6 bool
    Whether the IPSec tunnel uses IPv6.
    organization_id str
    The Organization ID the connection is associated with.
    route_propagation_enabled bool
    Whether route propagation is currently enabled.
    secret_id str
    The ID of the secret containing the pre-shared key (PSK).
    secret_version int
    The version of the secret containing the PSK.
    status str
    The status of the connection.
    tags Sequence[str]
    The tags associated with the connection.
    tunnel_status str
    The status of the IPSec tunnel.
    updated_at str
    The date and time of the last update of the connection.
    vpn_gateway_id str
    The ID of the VPN gateway attached to the connection.
    connection_id str
    name str
    project_id str
    region str
    bgpConfigIpv4s List<Property Map>
    The BGP IPv4 configuration.
    bgpConfigIpv6s List<Property Map>
    The BGP IPv6 configuration.
    bgpSessionIpv4s List<Property Map>
    The BGP IPv4 session information.
    bgpSessionIpv6s List<Property Map>
    The BGP IPv6 session information.
    bgpStatusIpv4 String
    The status of the BGP IPv4 session.
    bgpStatusIpv6 String
    The status of the BGP IPv6 session.
    createdAt String
    The date and time of creation of the connection.
    customerGatewayId String
    The ID of the customer gateway attached to the connection.
    enableRoutePropagation Boolean
    Whether route propagation is enabled.
    espCiphers List<Property Map>
    The ESP ciphers configuration.
    id String
    The provider-assigned unique ID for this managed resource.
    ikev2Ciphers List<Property Map>
    The IKEv2 ciphers configuration.
    initiationPolicy String
    Who initiates the IPSec tunnel.
    isIpv6 Boolean
    Whether the IPSec tunnel uses IPv6.
    organizationId String
    The Organization ID the connection is associated with.
    routePropagationEnabled Boolean
    Whether route propagation is currently enabled.
    secretId String
    The ID of the secret containing the pre-shared key (PSK).
    secretVersion Number
    The version of the secret containing the PSK.
    status String
    The status of the connection.
    tags List<String>
    The tags associated with the connection.
    tunnelStatus String
    The status of the IPSec tunnel.
    updatedAt String
    The date and time of the last update of the connection.
    vpnGatewayId String
    The ID of the VPN gateway attached to the connection.
    connectionId String
    name String
    projectId String
    region String

    Supporting Types

    GetConnectionBgpConfigIpv4

    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The ID of the routing policy to use for BGP route filtering
    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The ID of the routing policy to use for BGP route filtering
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The ID of the routing policy to use for BGP route filtering
    peerPrivateIp string
    The BGP peer IP on customer side
    privateIp string
    The BGP peer IP on Scaleway side
    routingPolicyId string
    The ID of the routing policy to use for BGP route filtering
    peer_private_ip str
    The BGP peer IP on customer side
    private_ip str
    The BGP peer IP on Scaleway side
    routing_policy_id str
    The ID of the routing policy to use for BGP route filtering
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The ID of the routing policy to use for BGP route filtering

    GetConnectionBgpConfigIpv6

    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The ID of the routing policy to use for BGP route filtering
    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The ID of the routing policy to use for BGP route filtering
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The ID of the routing policy to use for BGP route filtering
    peerPrivateIp string
    The BGP peer IP on customer side
    privateIp string
    The BGP peer IP on Scaleway side
    routingPolicyId string
    The ID of the routing policy to use for BGP route filtering
    peer_private_ip str
    The BGP peer IP on customer side
    private_ip str
    The BGP peer IP on Scaleway side
    routing_policy_id str
    The ID of the routing policy to use for BGP route filtering
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The ID of the routing policy to use for BGP route filtering

    GetConnectionBgpSessionIpv4

    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The routing policy ID
    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The routing policy ID
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The routing policy ID
    peerPrivateIp string
    The BGP peer IP on customer side
    privateIp string
    The BGP peer IP on Scaleway side
    routingPolicyId string
    The routing policy ID
    peer_private_ip str
    The BGP peer IP on customer side
    private_ip str
    The BGP peer IP on Scaleway side
    routing_policy_id str
    The routing policy ID
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The routing policy ID

    GetConnectionBgpSessionIpv6

    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The routing policy ID
    PeerPrivateIp string
    The BGP peer IP on customer side
    PrivateIp string
    The BGP peer IP on Scaleway side
    RoutingPolicyId string
    The routing policy ID
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The routing policy ID
    peerPrivateIp string
    The BGP peer IP on customer side
    privateIp string
    The BGP peer IP on Scaleway side
    routingPolicyId string
    The routing policy ID
    peer_private_ip str
    The BGP peer IP on customer side
    private_ip str
    The BGP peer IP on Scaleway side
    routing_policy_id str
    The routing policy ID
    peerPrivateIp String
    The BGP peer IP on customer side
    privateIp String
    The BGP peer IP on Scaleway side
    routingPolicyId String
    The routing policy ID

    GetConnectionEspCipher

    DhGroup string
    The Diffie-Hellman group
    Encryption string
    The encryption algorithm
    Integrity string
    The integrity/hash algorithm
    DhGroup string
    The Diffie-Hellman group
    Encryption string
    The encryption algorithm
    Integrity string
    The integrity/hash algorithm
    dhGroup String
    The Diffie-Hellman group
    encryption String
    The encryption algorithm
    integrity String
    The integrity/hash algorithm
    dhGroup string
    The Diffie-Hellman group
    encryption string
    The encryption algorithm
    integrity string
    The integrity/hash algorithm
    dh_group str
    The Diffie-Hellman group
    encryption str
    The encryption algorithm
    integrity str
    The integrity/hash algorithm
    dhGroup String
    The Diffie-Hellman group
    encryption String
    The encryption algorithm
    integrity String
    The integrity/hash algorithm

    GetConnectionIkev2Cipher

    DhGroup string
    The Diffie-Hellman group
    Encryption string
    The encryption algorithm
    Integrity string
    The integrity/hash algorithm
    DhGroup string
    The Diffie-Hellman group
    Encryption string
    The encryption algorithm
    Integrity string
    The integrity/hash algorithm
    dhGroup String
    The Diffie-Hellman group
    encryption String
    The encryption algorithm
    integrity String
    The integrity/hash algorithm
    dhGroup string
    The Diffie-Hellman group
    encryption string
    The encryption algorithm
    integrity string
    The integrity/hash algorithm
    dh_group str
    The Diffie-Hellman group
    encryption str
    The encryption algorithm
    integrity str
    The integrity/hash algorithm
    dhGroup String
    The Diffie-Hellman group
    encryption String
    The encryption algorithm
    integrity String
    The integrity/hash algorithm

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Viewing docs for Scaleway v1.44.1
    published on Monday, Mar 9, 2026 by pulumiverse
      Try Pulumi Cloud free. Your team will thank you.