1. Packages
  2. Scaleway
  3. API Docs
  4. block
  5. Volume
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

scaleway.block.Volume

Explore with Pulumi AI

scaleway logo
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

    The scaleway.block.Volume resource is used to create and manage Scaleway Block Storage volumes.

    Refer to the Block Storage product documentation and API documentation for more information.

    Example Usage

    Create a Block Storage volume

    The following command allows you to create a Block Storage volume of 20 GB with a 5000 IOPS.

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const blockVolume = new scaleway.block.Volume("block_volume", {
        iops: 5000,
        name: "some-volume-name",
        sizeInGb: 20,
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    block_volume = scaleway.block.Volume("block_volume",
        iops=5000,
        name="some-volume-name",
        size_in_gb=20)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/block"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := block.NewVolume(ctx, "block_volume", &block.VolumeArgs{
    			Iops:     pulumi.Int(5000),
    			Name:     pulumi.String("some-volume-name"),
    			SizeInGb: pulumi.Int(20),
    		})
    		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 blockVolume = new Scaleway.Block.Volume("block_volume", new()
        {
            Iops = 5000,
            Name = "some-volume-name",
            SizeInGb = 20,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.block.Volume;
    import com.pulumi.scaleway.block.VolumeArgs;
    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 blockVolume = new Volume("blockVolume", VolumeArgs.builder()
                .iops(5000)
                .name("some-volume-name")
                .sizeInGb(20)
                .build());
    
        }
    }
    
    resources:
      blockVolume:
        type: scaleway:block:Volume
        name: block_volume
        properties:
          iops: 5000
          name: some-volume-name
          sizeInGb: 20
    

    With snapshot

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const base = new scaleway.block.Volume("base", {
        name: "block-volume-base",
        iops: 5000,
        sizeInGb: 20,
    });
    const main = new scaleway.block.Snapshot("main", {
        name: "block-volume-from-snapshot",
        volumeId: base.id,
    });
    const mainVolume = new scaleway.block.Volume("main", {
        name: "block-volume-from-snapshot",
        iops: 5000,
        snapshotId: main.id,
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    base = scaleway.block.Volume("base",
        name="block-volume-base",
        iops=5000,
        size_in_gb=20)
    main = scaleway.block.Snapshot("main",
        name="block-volume-from-snapshot",
        volume_id=base.id)
    main_volume = scaleway.block.Volume("main",
        name="block-volume-from-snapshot",
        iops=5000,
        snapshot_id=main.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/block"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		base, err := block.NewVolume(ctx, "base", &block.VolumeArgs{
    			Name:     pulumi.String("block-volume-base"),
    			Iops:     pulumi.Int(5000),
    			SizeInGb: pulumi.Int(20),
    		})
    		if err != nil {
    			return err
    		}
    		main, err := block.NewSnapshot(ctx, "main", &block.SnapshotArgs{
    			Name:     pulumi.String("block-volume-from-snapshot"),
    			VolumeId: base.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = block.NewVolume(ctx, "main", &block.VolumeArgs{
    			Name:       pulumi.String("block-volume-from-snapshot"),
    			Iops:       pulumi.Int(5000),
    			SnapshotId: main.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 @base = new Scaleway.Block.Volume("base", new()
        {
            Name = "block-volume-base",
            Iops = 5000,
            SizeInGb = 20,
        });
    
        var main = new Scaleway.Block.Snapshot("main", new()
        {
            Name = "block-volume-from-snapshot",
            VolumeId = @base.Id,
        });
    
        var mainVolume = new Scaleway.Block.Volume("main", new()
        {
            Name = "block-volume-from-snapshot",
            Iops = 5000,
            SnapshotId = main.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.block.Volume;
    import com.pulumi.scaleway.block.VolumeArgs;
    import com.pulumi.scaleway.block.Snapshot;
    import com.pulumi.scaleway.block.SnapshotArgs;
    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 base = new Volume("base", VolumeArgs.builder()
                .name("block-volume-base")
                .iops(5000)
                .sizeInGb(20)
                .build());
    
            var main = new Snapshot("main", SnapshotArgs.builder()
                .name("block-volume-from-snapshot")
                .volumeId(base.id())
                .build());
    
            var mainVolume = new Volume("mainVolume", VolumeArgs.builder()
                .name("block-volume-from-snapshot")
                .iops(5000)
                .snapshotId(main.id())
                .build());
    
        }
    }
    
    resources:
      base:
        type: scaleway:block:Volume
        properties:
          name: block-volume-base
          iops: 5000
          sizeInGb: 20
      main:
        type: scaleway:block:Snapshot
        properties:
          name: block-volume-from-snapshot
          volumeId: ${base.id}
      mainVolume:
        type: scaleway:block:Volume
        name: main
        properties:
          name: block-volume-from-snapshot
          iops: 5000
          snapshotId: ${main.id}
    

    Create Volume Resource

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

    Constructor syntax

    new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
    @overload
    def Volume(resource_name: str,
               args: VolumeArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Volume(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               iops: Optional[int] = None,
               instance_volume_id: Optional[str] = None,
               name: Optional[str] = None,
               project_id: Optional[str] = None,
               size_in_gb: Optional[int] = None,
               snapshot_id: Optional[str] = None,
               tags: Optional[Sequence[str]] = None,
               zone: Optional[str] = None)
    func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
    public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
    public Volume(String name, VolumeArgs args)
    public Volume(String name, VolumeArgs args, CustomResourceOptions options)
    
    type: scaleway:block:Volume
    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 VolumeArgs
    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 VolumeArgs
    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 VolumeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VolumeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VolumeArgs
    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 volumeResource = new Scaleway.Block.Volume("volumeResource", new()
    {
        Iops = 0,
        InstanceVolumeId = "string",
        Name = "string",
        ProjectId = "string",
        SizeInGb = 0,
        SnapshotId = "string",
        Tags = new[]
        {
            "string",
        },
        Zone = "string",
    });
    
    example, err := block.NewVolume(ctx, "volumeResource", &block.VolumeArgs{
    	Iops:             pulumi.Int(0),
    	InstanceVolumeId: pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	ProjectId:        pulumi.String("string"),
    	SizeInGb:         pulumi.Int(0),
    	SnapshotId:       pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Zone: pulumi.String("string"),
    })
    
    var volumeResource = new Volume("volumeResource", VolumeArgs.builder()
        .iops(0)
        .instanceVolumeId("string")
        .name("string")
        .projectId("string")
        .sizeInGb(0)
        .snapshotId("string")
        .tags("string")
        .zone("string")
        .build());
    
    volume_resource = scaleway.block.Volume("volumeResource",
        iops=0,
        instance_volume_id="string",
        name="string",
        project_id="string",
        size_in_gb=0,
        snapshot_id="string",
        tags=["string"],
        zone="string")
    
    const volumeResource = new scaleway.block.Volume("volumeResource", {
        iops: 0,
        instanceVolumeId: "string",
        name: "string",
        projectId: "string",
        sizeInGb: 0,
        snapshotId: "string",
        tags: ["string"],
        zone: "string",
    });
    
    type: scaleway:block:Volume
    properties:
        instanceVolumeId: string
        iops: 0
        name: string
        projectId: string
        sizeInGb: 0
        snapshotId: string
        tags:
            - string
        zone: string
    

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

    Iops int
    The maximum IOPs expected, must match available options.
    InstanceVolumeId string
    The instance volume to create the block volume from
    Name string
    The name of the volume. If not provided, a name will be randomly generated.
    ProjectId string
    ). The ID of the Project the volume is associated with.
    SizeInGb int
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    SnapshotId string
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    Tags List<string>
    A list of tags to apply to the volume.
    Zone string
    ). The zone in which the volume should be created.
    Iops int
    The maximum IOPs expected, must match available options.
    InstanceVolumeId string
    The instance volume to create the block volume from
    Name string
    The name of the volume. If not provided, a name will be randomly generated.
    ProjectId string
    ). The ID of the Project the volume is associated with.
    SizeInGb int
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    SnapshotId string
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    Tags []string
    A list of tags to apply to the volume.
    Zone string
    ). The zone in which the volume should be created.
    iops Integer
    The maximum IOPs expected, must match available options.
    instanceVolumeId String
    The instance volume to create the block volume from
    name String
    The name of the volume. If not provided, a name will be randomly generated.
    projectId String
    ). The ID of the Project the volume is associated with.
    sizeInGb Integer
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshotId String
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags List<String>
    A list of tags to apply to the volume.
    zone String
    ). The zone in which the volume should be created.
    iops number
    The maximum IOPs expected, must match available options.
    instanceVolumeId string
    The instance volume to create the block volume from
    name string
    The name of the volume. If not provided, a name will be randomly generated.
    projectId string
    ). The ID of the Project the volume is associated with.
    sizeInGb number
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshotId string
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags string[]
    A list of tags to apply to the volume.
    zone string
    ). The zone in which the volume should be created.
    iops int
    The maximum IOPs expected, must match available options.
    instance_volume_id str
    The instance volume to create the block volume from
    name str
    The name of the volume. If not provided, a name will be randomly generated.
    project_id str
    ). The ID of the Project the volume is associated with.
    size_in_gb int
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshot_id str
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags Sequence[str]
    A list of tags to apply to the volume.
    zone str
    ). The zone in which the volume should be created.
    iops Number
    The maximum IOPs expected, must match available options.
    instanceVolumeId String
    The instance volume to create the block volume from
    name String
    The name of the volume. If not provided, a name will be randomly generated.
    projectId String
    ). The ID of the Project the volume is associated with.
    sizeInGb Number
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshotId String
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags List<String>
    A list of tags to apply to the volume.
    zone String
    ). The zone in which the volume should be created.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Volume Resource

    Get an existing Volume 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?: VolumeState, opts?: CustomResourceOptions): Volume
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            instance_volume_id: Optional[str] = None,
            iops: Optional[int] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            size_in_gb: Optional[int] = None,
            snapshot_id: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            zone: Optional[str] = None) -> Volume
    func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
    public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
    public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:block:Volume    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:
    InstanceVolumeId string
    The instance volume to create the block volume from
    Iops int
    The maximum IOPs expected, must match available options.
    Name string
    The name of the volume. If not provided, a name will be randomly generated.
    ProjectId string
    ). The ID of the Project the volume is associated with.
    SizeInGb int
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    SnapshotId string
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    Tags List<string>
    A list of tags to apply to the volume.
    Zone string
    ). The zone in which the volume should be created.
    InstanceVolumeId string
    The instance volume to create the block volume from
    Iops int
    The maximum IOPs expected, must match available options.
    Name string
    The name of the volume. If not provided, a name will be randomly generated.
    ProjectId string
    ). The ID of the Project the volume is associated with.
    SizeInGb int
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    SnapshotId string
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    Tags []string
    A list of tags to apply to the volume.
    Zone string
    ). The zone in which the volume should be created.
    instanceVolumeId String
    The instance volume to create the block volume from
    iops Integer
    The maximum IOPs expected, must match available options.
    name String
    The name of the volume. If not provided, a name will be randomly generated.
    projectId String
    ). The ID of the Project the volume is associated with.
    sizeInGb Integer
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshotId String
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags List<String>
    A list of tags to apply to the volume.
    zone String
    ). The zone in which the volume should be created.
    instanceVolumeId string
    The instance volume to create the block volume from
    iops number
    The maximum IOPs expected, must match available options.
    name string
    The name of the volume. If not provided, a name will be randomly generated.
    projectId string
    ). The ID of the Project the volume is associated with.
    sizeInGb number
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshotId string
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags string[]
    A list of tags to apply to the volume.
    zone string
    ). The zone in which the volume should be created.
    instance_volume_id str
    The instance volume to create the block volume from
    iops int
    The maximum IOPs expected, must match available options.
    name str
    The name of the volume. If not provided, a name will be randomly generated.
    project_id str
    ). The ID of the Project the volume is associated with.
    size_in_gb int
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshot_id str
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags Sequence[str]
    A list of tags to apply to the volume.
    zone str
    ). The zone in which the volume should be created.
    instanceVolumeId String
    The instance volume to create the block volume from
    iops Number
    The maximum IOPs expected, must match available options.
    name String
    The name of the volume. If not provided, a name will be randomly generated.
    projectId String
    ). The ID of the Project the volume is associated with.
    sizeInGb Number
    The size of the volume in gigabytes. Only one of size_in_gb, and snapshot_id should be specified.
    snapshotId String
    If set, the new volume will be created from this snapshot. Only one of size_in_gb, snapshot_id should be specified.
    tags List<String>
    A list of tags to apply to the volume.
    zone String
    ). The zone in which the volume should be created.

    Import

    This section explains how to import a Block Storage volume using the zoned ID ({zone}/{id}) format.

    bash

    $ pulumi import scaleway:block/volume:Volume block_volume fr-par-1/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
    Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse