1. Packages
  2. Scaleway
  3. API Docs
  4. network
  5. Connector
Viewing docs for Scaleway v1.47.0
published on Friday, Apr 17, 2026 by pulumiverse
scaleway logo
Viewing docs for Scaleway v1.47.0
published on Friday, Apr 17, 2026 by pulumiverse

    Creates and manages Scaleway VPC Connectors.

    A VPC connector enables network connectivity between two VPCs, allowing resources in separate VPCs to communicate with each other.

    For more information, see the main documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const vpc01 = new scaleway.network.Vpc("vpc01", {name: "my-vpc-source"});
    const vpc02 = new scaleway.network.Vpc("vpc02", {name: "my-vpc-target"});
    const main = new scaleway.network.Connector("main", {
        name: "my-vpc-connector",
        vpcId: vpc01.id,
        targetVpcId: vpc02.id,
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    vpc01 = scaleway.network.Vpc("vpc01", name="my-vpc-source")
    vpc02 = scaleway.network.Vpc("vpc02", name="my-vpc-target")
    main = scaleway.network.Connector("main",
        name="my-vpc-connector",
        vpc_id=vpc01.id,
        target_vpc_id=vpc02.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/network"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		vpc01, err := network.NewVpc(ctx, "vpc01", &network.VpcArgs{
    			Name: pulumi.String("my-vpc-source"),
    		})
    		if err != nil {
    			return err
    		}
    		vpc02, err := network.NewVpc(ctx, "vpc02", &network.VpcArgs{
    			Name: pulumi.String("my-vpc-target"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewConnector(ctx, "main", &network.ConnectorArgs{
    			Name:        pulumi.String("my-vpc-connector"),
    			VpcId:       vpc01.ID(),
    			TargetVpcId: vpc02.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var vpc01 = new Scaleway.Network.Vpc("vpc01", new()
        {
            Name = "my-vpc-source",
        });
    
        var vpc02 = new Scaleway.Network.Vpc("vpc02", new()
        {
            Name = "my-vpc-target",
        });
    
        var main = new Scaleway.Network.Connector("main", new()
        {
            Name = "my-vpc-connector",
            VpcId = vpc01.Id,
            TargetVpcId = vpc02.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.network.Vpc;
    import com.pulumi.scaleway.network.VpcArgs;
    import com.pulumi.scaleway.network.Connector;
    import com.pulumi.scaleway.network.ConnectorArgs;
    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 vpc01 = new Vpc("vpc01", VpcArgs.builder()
                .name("my-vpc-source")
                .build());
    
            var vpc02 = new Vpc("vpc02", VpcArgs.builder()
                .name("my-vpc-target")
                .build());
    
            var main = new Connector("main", ConnectorArgs.builder()
                .name("my-vpc-connector")
                .vpcId(vpc01.id())
                .targetVpcId(vpc02.id())
                .build());
    
        }
    }
    
    resources:
      vpc01:
        type: scaleway:network:Vpc
        properties:
          name: my-vpc-source
      vpc02:
        type: scaleway:network:Vpc
        properties:
          name: my-vpc-target
      main:
        type: scaleway:network:Connector
        properties:
          name: my-vpc-connector
          vpcId: ${vpc01.id}
          targetVpcId: ${vpc02.id}
    
    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const vpc01 = new scaleway.network.Vpc("vpc01", {
        name: "my-vpc-source",
        region: "nl-ams",
    });
    const vpc02 = new scaleway.network.Vpc("vpc02", {
        name: "my-vpc-target",
        region: "nl-ams",
    });
    const main = new scaleway.network.Connector("main", {
        name: "my-vpc-connector",
        vpcId: vpc01.id,
        targetVpcId: vpc02.id,
        region: "nl-ams",
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    vpc01 = scaleway.network.Vpc("vpc01",
        name="my-vpc-source",
        region="nl-ams")
    vpc02 = scaleway.network.Vpc("vpc02",
        name="my-vpc-target",
        region="nl-ams")
    main = scaleway.network.Connector("main",
        name="my-vpc-connector",
        vpc_id=vpc01.id,
        target_vpc_id=vpc02.id,
        region="nl-ams")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/network"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		vpc01, err := network.NewVpc(ctx, "vpc01", &network.VpcArgs{
    			Name:   pulumi.String("my-vpc-source"),
    			Region: pulumi.String("nl-ams"),
    		})
    		if err != nil {
    			return err
    		}
    		vpc02, err := network.NewVpc(ctx, "vpc02", &network.VpcArgs{
    			Name:   pulumi.String("my-vpc-target"),
    			Region: pulumi.String("nl-ams"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewConnector(ctx, "main", &network.ConnectorArgs{
    			Name:        pulumi.String("my-vpc-connector"),
    			VpcId:       vpc01.ID(),
    			TargetVpcId: vpc02.ID(),
    			Region:      pulumi.String("nl-ams"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var vpc01 = new Scaleway.Network.Vpc("vpc01", new()
        {
            Name = "my-vpc-source",
            Region = "nl-ams",
        });
    
        var vpc02 = new Scaleway.Network.Vpc("vpc02", new()
        {
            Name = "my-vpc-target",
            Region = "nl-ams",
        });
    
        var main = new Scaleway.Network.Connector("main", new()
        {
            Name = "my-vpc-connector",
            VpcId = vpc01.Id,
            TargetVpcId = vpc02.Id,
            Region = "nl-ams",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.network.Vpc;
    import com.pulumi.scaleway.network.VpcArgs;
    import com.pulumi.scaleway.network.Connector;
    import com.pulumi.scaleway.network.ConnectorArgs;
    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 vpc01 = new Vpc("vpc01", VpcArgs.builder()
                .name("my-vpc-source")
                .region("nl-ams")
                .build());
    
            var vpc02 = new Vpc("vpc02", VpcArgs.builder()
                .name("my-vpc-target")
                .region("nl-ams")
                .build());
    
            var main = new Connector("main", ConnectorArgs.builder()
                .name("my-vpc-connector")
                .vpcId(vpc01.id())
                .targetVpcId(vpc02.id())
                .region("nl-ams")
                .build());
    
        }
    }
    
    resources:
      vpc01:
        type: scaleway:network:Vpc
        properties:
          name: my-vpc-source
          region: nl-ams
      vpc02:
        type: scaleway:network:Vpc
        properties:
          name: my-vpc-target
          region: nl-ams
      main:
        type: scaleway:network:Connector
        properties:
          name: my-vpc-connector
          vpcId: ${vpc01.id}
          targetVpcId: ${vpc02.id}
          region: nl-ams
    
    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const vpc01 = new scaleway.network.Vpc("vpc01", {name: "my-vpc-source"});
    const vpc02 = new scaleway.network.Vpc("vpc02", {name: "my-vpc-target"});
    const main = new scaleway.network.Connector("main", {
        name: "my-vpc-connector",
        vpcId: vpc01.id,
        targetVpcId: vpc02.id,
        tags: [
            "production",
            "connector",
        ],
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    vpc01 = scaleway.network.Vpc("vpc01", name="my-vpc-source")
    vpc02 = scaleway.network.Vpc("vpc02", name="my-vpc-target")
    main = scaleway.network.Connector("main",
        name="my-vpc-connector",
        vpc_id=vpc01.id,
        target_vpc_id=vpc02.id,
        tags=[
            "production",
            "connector",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/network"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		vpc01, err := network.NewVpc(ctx, "vpc01", &network.VpcArgs{
    			Name: pulumi.String("my-vpc-source"),
    		})
    		if err != nil {
    			return err
    		}
    		vpc02, err := network.NewVpc(ctx, "vpc02", &network.VpcArgs{
    			Name: pulumi.String("my-vpc-target"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewConnector(ctx, "main", &network.ConnectorArgs{
    			Name:        pulumi.String("my-vpc-connector"),
    			VpcId:       vpc01.ID(),
    			TargetVpcId: vpc02.ID(),
    			Tags: pulumi.StringArray{
    				pulumi.String("production"),
    				pulumi.String("connector"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var vpc01 = new Scaleway.Network.Vpc("vpc01", new()
        {
            Name = "my-vpc-source",
        });
    
        var vpc02 = new Scaleway.Network.Vpc("vpc02", new()
        {
            Name = "my-vpc-target",
        });
    
        var main = new Scaleway.Network.Connector("main", new()
        {
            Name = "my-vpc-connector",
            VpcId = vpc01.Id,
            TargetVpcId = vpc02.Id,
            Tags = new[]
            {
                "production",
                "connector",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.network.Vpc;
    import com.pulumi.scaleway.network.VpcArgs;
    import com.pulumi.scaleway.network.Connector;
    import com.pulumi.scaleway.network.ConnectorArgs;
    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 vpc01 = new Vpc("vpc01", VpcArgs.builder()
                .name("my-vpc-source")
                .build());
    
            var vpc02 = new Vpc("vpc02", VpcArgs.builder()
                .name("my-vpc-target")
                .build());
    
            var main = new Connector("main", ConnectorArgs.builder()
                .name("my-vpc-connector")
                .vpcId(vpc01.id())
                .targetVpcId(vpc02.id())
                .tags(            
                    "production",
                    "connector")
                .build());
    
        }
    }
    
    resources:
      vpc01:
        type: scaleway:network:Vpc
        properties:
          name: my-vpc-source
      vpc02:
        type: scaleway:network:Vpc
        properties:
          name: my-vpc-target
      main:
        type: scaleway:network:Connector
        properties:
          name: my-vpc-connector
          vpcId: ${vpc01.id}
          targetVpcId: ${vpc02.id}
          tags:
            - production
            - connector
    

    Create Connector Resource

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

    Constructor syntax

    new Connector(name: string, args: ConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def Connector(resource_name: str,
                  args: ConnectorArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Connector(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  target_vpc_id: Optional[str] = None,
                  vpc_id: Optional[str] = None,
                  name: Optional[str] = None,
                  region: Optional[str] = None,
                  tags: Optional[Sequence[str]] = None)
    func NewConnector(ctx *Context, name string, args ConnectorArgs, opts ...ResourceOption) (*Connector, error)
    public Connector(string name, ConnectorArgs args, CustomResourceOptions? opts = null)
    public Connector(String name, ConnectorArgs args)
    public Connector(String name, ConnectorArgs args, CustomResourceOptions options)
    
    type: scaleway:network:Connector
    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 ConnectorArgs
    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 ConnectorArgs
    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 ConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectorArgs
    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 connectorResource = new Scaleway.Network.Connector("connectorResource", new()
    {
        TargetVpcId = "string",
        VpcId = "string",
        Name = "string",
        Region = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := network.NewConnector(ctx, "connectorResource", &network.ConnectorArgs{
    	TargetVpcId: pulumi.String("string"),
    	VpcId:       pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Region:      pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var connectorResource = new Connector("connectorResource", ConnectorArgs.builder()
        .targetVpcId("string")
        .vpcId("string")
        .name("string")
        .region("string")
        .tags("string")
        .build());
    
    connector_resource = scaleway.network.Connector("connectorResource",
        target_vpc_id="string",
        vpc_id="string",
        name="string",
        region="string",
        tags=["string"])
    
    const connectorResource = new scaleway.network.Connector("connectorResource", {
        targetVpcId: "string",
        vpcId: "string",
        name: "string",
        region: "string",
        tags: ["string"],
    });
    
    type: scaleway:network:Connector
    properties:
        name: string
        region: string
        tags:
            - string
        targetVpcId: string
        vpcId: string
    

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

    TargetVpcId string
    The ID of the target VPC to connect to.
    VpcId string
    The ID of the source VPC.
    Name string
    The name of the VPC connector. If not provided it will be randomly generated.
    Region string
    region) The region of the VPC connector.
    Tags List<string>
    The tags to associate with the VPC connector.
    TargetVpcId string
    The ID of the target VPC to connect to.
    VpcId string
    The ID of the source VPC.
    Name string
    The name of the VPC connector. If not provided it will be randomly generated.
    Region string
    region) The region of the VPC connector.
    Tags []string
    The tags to associate with the VPC connector.
    targetVpcId String
    The ID of the target VPC to connect to.
    vpcId String
    The ID of the source VPC.
    name String
    The name of the VPC connector. If not provided it will be randomly generated.
    region String
    region) The region of the VPC connector.
    tags List<String>
    The tags to associate with the VPC connector.
    targetVpcId string
    The ID of the target VPC to connect to.
    vpcId string
    The ID of the source VPC.
    name string
    The name of the VPC connector. If not provided it will be randomly generated.
    region string
    region) The region of the VPC connector.
    tags string[]
    The tags to associate with the VPC connector.
    target_vpc_id str
    The ID of the target VPC to connect to.
    vpc_id str
    The ID of the source VPC.
    name str
    The name of the VPC connector. If not provided it will be randomly generated.
    region str
    region) The region of the VPC connector.
    tags Sequence[str]
    The tags to associate with the VPC connector.
    targetVpcId String
    The ID of the target VPC to connect to.
    vpcId String
    The ID of the source VPC.
    name String
    The name of the VPC connector. If not provided it will be randomly generated.
    region String
    region) The region of the VPC connector.
    tags List<String>
    The tags to associate with the VPC connector.

    Outputs

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

    CreatedAt string
    The date and time of the creation of the VPC connector (RFC 3339 format).
    Id string
    The provider-assigned unique ID for this managed resource.
    OrganizationId string
    The Organization ID the VPC connector is associated with.
    ProjectId string
    The Scaleway Project the VPC connector belongs to.
    Status string
    The status of the VPC connector.
    UpdatedAt string
    The date and time of the last update of the VPC connector (RFC 3339 format).
    CreatedAt string
    The date and time of the creation of the VPC connector (RFC 3339 format).
    Id string
    The provider-assigned unique ID for this managed resource.
    OrganizationId string
    The Organization ID the VPC connector is associated with.
    ProjectId string
    The Scaleway Project the VPC connector belongs to.
    Status string
    The status of the VPC connector.
    UpdatedAt string
    The date and time of the last update of the VPC connector (RFC 3339 format).
    createdAt String
    The date and time of the creation of the VPC connector (RFC 3339 format).
    id String
    The provider-assigned unique ID for this managed resource.
    organizationId String
    The Organization ID the VPC connector is associated with.
    projectId String
    The Scaleway Project the VPC connector belongs to.
    status String
    The status of the VPC connector.
    updatedAt String
    The date and time of the last update of the VPC connector (RFC 3339 format).
    createdAt string
    The date and time of the creation of the VPC connector (RFC 3339 format).
    id string
    The provider-assigned unique ID for this managed resource.
    organizationId string
    The Organization ID the VPC connector is associated with.
    projectId string
    The Scaleway Project the VPC connector belongs to.
    status string
    The status of the VPC connector.
    updatedAt string
    The date and time of the last update of the VPC connector (RFC 3339 format).
    created_at str
    The date and time of the creation of the VPC connector (RFC 3339 format).
    id str
    The provider-assigned unique ID for this managed resource.
    organization_id str
    The Organization ID the VPC connector is associated with.
    project_id str
    The Scaleway Project the VPC connector belongs to.
    status str
    The status of the VPC connector.
    updated_at str
    The date and time of the last update of the VPC connector (RFC 3339 format).
    createdAt String
    The date and time of the creation of the VPC connector (RFC 3339 format).
    id String
    The provider-assigned unique ID for this managed resource.
    organizationId String
    The Organization ID the VPC connector is associated with.
    projectId String
    The Scaleway Project the VPC connector belongs to.
    status String
    The status of the VPC connector.
    updatedAt String
    The date and time of the last update of the VPC connector (RFC 3339 format).

    Look up Existing Connector Resource

    Get an existing Connector 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?: ConnectorState, opts?: CustomResourceOptions): Connector
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            target_vpc_id: Optional[str] = None,
            updated_at: Optional[str] = None,
            vpc_id: Optional[str] = None) -> Connector
    func GetConnector(ctx *Context, name string, id IDInput, state *ConnectorState, opts ...ResourceOption) (*Connector, error)
    public static Connector Get(string name, Input<string> id, ConnectorState? state, CustomResourceOptions? opts = null)
    public static Connector get(String name, Output<String> id, ConnectorState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:network:Connector    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.
    The following state arguments are supported:
    CreatedAt string
    The date and time of the creation of the VPC connector (RFC 3339 format).
    Name string
    The name of the VPC connector. If not provided it will be randomly generated.
    OrganizationId string
    The Organization ID the VPC connector is associated with.
    ProjectId string
    The Scaleway Project the VPC connector belongs to.
    Region string
    region) The region of the VPC connector.
    Status string
    The status of the VPC connector.
    Tags List<string>
    The tags to associate with the VPC connector.
    TargetVpcId string
    The ID of the target VPC to connect to.
    UpdatedAt string
    The date and time of the last update of the VPC connector (RFC 3339 format).
    VpcId string
    The ID of the source VPC.
    CreatedAt string
    The date and time of the creation of the VPC connector (RFC 3339 format).
    Name string
    The name of the VPC connector. If not provided it will be randomly generated.
    OrganizationId string
    The Organization ID the VPC connector is associated with.
    ProjectId string
    The Scaleway Project the VPC connector belongs to.
    Region string
    region) The region of the VPC connector.
    Status string
    The status of the VPC connector.
    Tags []string
    The tags to associate with the VPC connector.
    TargetVpcId string
    The ID of the target VPC to connect to.
    UpdatedAt string
    The date and time of the last update of the VPC connector (RFC 3339 format).
    VpcId string
    The ID of the source VPC.
    createdAt String
    The date and time of the creation of the VPC connector (RFC 3339 format).
    name String
    The name of the VPC connector. If not provided it will be randomly generated.
    organizationId String
    The Organization ID the VPC connector is associated with.
    projectId String
    The Scaleway Project the VPC connector belongs to.
    region String
    region) The region of the VPC connector.
    status String
    The status of the VPC connector.
    tags List<String>
    The tags to associate with the VPC connector.
    targetVpcId String
    The ID of the target VPC to connect to.
    updatedAt String
    The date and time of the last update of the VPC connector (RFC 3339 format).
    vpcId String
    The ID of the source VPC.
    createdAt string
    The date and time of the creation of the VPC connector (RFC 3339 format).
    name string
    The name of the VPC connector. If not provided it will be randomly generated.
    organizationId string
    The Organization ID the VPC connector is associated with.
    projectId string
    The Scaleway Project the VPC connector belongs to.
    region string
    region) The region of the VPC connector.
    status string
    The status of the VPC connector.
    tags string[]
    The tags to associate with the VPC connector.
    targetVpcId string
    The ID of the target VPC to connect to.
    updatedAt string
    The date and time of the last update of the VPC connector (RFC 3339 format).
    vpcId string
    The ID of the source VPC.
    created_at str
    The date and time of the creation of the VPC connector (RFC 3339 format).
    name str
    The name of the VPC connector. If not provided it will be randomly generated.
    organization_id str
    The Organization ID the VPC connector is associated with.
    project_id str
    The Scaleway Project the VPC connector belongs to.
    region str
    region) The region of the VPC connector.
    status str
    The status of the VPC connector.
    tags Sequence[str]
    The tags to associate with the VPC connector.
    target_vpc_id str
    The ID of the target VPC to connect to.
    updated_at str
    The date and time of the last update of the VPC connector (RFC 3339 format).
    vpc_id str
    The ID of the source VPC.
    createdAt String
    The date and time of the creation of the VPC connector (RFC 3339 format).
    name String
    The name of the VPC connector. If not provided it will be randomly generated.
    organizationId String
    The Organization ID the VPC connector is associated with.
    projectId String
    The Scaleway Project the VPC connector belongs to.
    region String
    region) The region of the VPC connector.
    status String
    The status of the VPC connector.
    tags List<String>
    The tags to associate with the VPC connector.
    targetVpcId String
    The ID of the target VPC to connect to.
    updatedAt String
    The date and time of the last update of the VPC connector (RFC 3339 format).
    vpcId String
    The ID of the source VPC.

    Import

    VPC connectors can be imported using {region}/{id}, e.g.

    $ pulumi import scaleway:network/connector:Connector main fr-par/11111111-1111-1111-1111-111111111111
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.47.0
    published on Friday, Apr 17, 2026 by pulumiverse
      Try Pulumi Cloud free. Your team will thank you.