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

scaleway.object.BucketLockConfiguration

Explore with Pulumi AI

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

    The scaleway.object.BucketLockConfiguration resource allows you to create and manage an object lock configuration for Scaleway Object storage.

    Refer to the dedicated documentation for more information on object lock.

    Example Usage

    Configure an Object Lock for a new bucket

    Note: object_lock_enabled must be set to true before configuring the lock.

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.object.Bucket("main", {
        name: "MyBucket",
        acl: "public-read",
        objectLockEnabled: true,
    });
    const mainBucketLockConfiguration = new scaleway.object.BucketLockConfiguration("main", {
        bucket: main.name,
        rule: {
            defaultRetention: {
                mode: "GOVERNANCE",
                days: 1,
            },
        },
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.object.Bucket("main",
        name="MyBucket",
        acl="public-read",
        object_lock_enabled=True)
    main_bucket_lock_configuration = scaleway.object.BucketLockConfiguration("main",
        bucket=main.name,
        rule={
            "default_retention": {
                "mode": "GOVERNANCE",
                "days": 1,
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/object"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		main, err := object.NewBucket(ctx, "main", &object.BucketArgs{
    			Name:              pulumi.String("MyBucket"),
    			Acl:               pulumi.String("public-read"),
    			ObjectLockEnabled: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = object.NewBucketLockConfiguration(ctx, "main", &object.BucketLockConfigurationArgs{
    			Bucket: main.Name,
    			Rule: &object.BucketLockConfigurationRuleArgs{
    				DefaultRetention: &object.BucketLockConfigurationRuleDefaultRetentionArgs{
    					Mode: pulumi.String("GOVERNANCE"),
    					Days: pulumi.Int(1),
    				},
    			},
    		})
    		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 main = new Scaleway.Object.Bucket("main", new()
        {
            Name = "MyBucket",
            Acl = "public-read",
            ObjectLockEnabled = true,
        });
    
        var mainBucketLockConfiguration = new Scaleway.Object.BucketLockConfiguration("main", new()
        {
            Bucket = main.Name,
            Rule = new Scaleway.Object.Inputs.BucketLockConfigurationRuleArgs
            {
                DefaultRetention = new Scaleway.Object.Inputs.BucketLockConfigurationRuleDefaultRetentionArgs
                {
                    Mode = "GOVERNANCE",
                    Days = 1,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.object.Bucket;
    import com.pulumi.scaleway.object.BucketArgs;
    import com.pulumi.scaleway.object.BucketLockConfiguration;
    import com.pulumi.scaleway.object.BucketLockConfigurationArgs;
    import com.pulumi.scaleway.object.inputs.BucketLockConfigurationRuleArgs;
    import com.pulumi.scaleway.object.inputs.BucketLockConfigurationRuleDefaultRetentionArgs;
    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 main = new Bucket("main", BucketArgs.builder()
                .name("MyBucket")
                .acl("public-read")
                .objectLockEnabled(true)
                .build());
    
            var mainBucketLockConfiguration = new BucketLockConfiguration("mainBucketLockConfiguration", BucketLockConfigurationArgs.builder()
                .bucket(main.name())
                .rule(BucketLockConfigurationRuleArgs.builder()
                    .defaultRetention(BucketLockConfigurationRuleDefaultRetentionArgs.builder()
                        .mode("GOVERNANCE")
                        .days(1)
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:object:Bucket
        properties:
          name: MyBucket
          acl: public-read
          objectLockEnabled: true
      mainBucketLockConfiguration:
        type: scaleway:object:BucketLockConfiguration
        name: main
        properties:
          bucket: ${main.name}
          rule:
            defaultRetention:
              mode: GOVERNANCE
              days: 1
    

    Configure an object Lock for an existing bucket

    Contact Scaleway support to enable object lock on an existing bucket.

    Create BucketLockConfiguration Resource

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

    Constructor syntax

    new BucketLockConfiguration(name: string, args: BucketLockConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def BucketLockConfiguration(resource_name: str,
                                args: BucketLockConfigurationArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def BucketLockConfiguration(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                bucket: Optional[str] = None,
                                rule: Optional[BucketLockConfigurationRuleArgs] = None,
                                project_id: Optional[str] = None,
                                region: Optional[str] = None)
    func NewBucketLockConfiguration(ctx *Context, name string, args BucketLockConfigurationArgs, opts ...ResourceOption) (*BucketLockConfiguration, error)
    public BucketLockConfiguration(string name, BucketLockConfigurationArgs args, CustomResourceOptions? opts = null)
    public BucketLockConfiguration(String name, BucketLockConfigurationArgs args)
    public BucketLockConfiguration(String name, BucketLockConfigurationArgs args, CustomResourceOptions options)
    
    type: scaleway:object:BucketLockConfiguration
    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 BucketLockConfigurationArgs
    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 BucketLockConfigurationArgs
    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 BucketLockConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BucketLockConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BucketLockConfigurationArgs
    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 bucketLockConfigurationResource = new Scaleway.Object.BucketLockConfiguration("bucketLockConfigurationResource", new()
    {
        Bucket = "string",
        Rule = new Scaleway.Object.Inputs.BucketLockConfigurationRuleArgs
        {
            DefaultRetention = new Scaleway.Object.Inputs.BucketLockConfigurationRuleDefaultRetentionArgs
            {
                Mode = "string",
                Days = 0,
                Years = 0,
            },
        },
        ProjectId = "string",
        Region = "string",
    });
    
    example, err := object.NewBucketLockConfiguration(ctx, "bucketLockConfigurationResource", &object.BucketLockConfigurationArgs{
    	Bucket: pulumi.String("string"),
    	Rule: &object.BucketLockConfigurationRuleArgs{
    		DefaultRetention: &object.BucketLockConfigurationRuleDefaultRetentionArgs{
    			Mode:  pulumi.String("string"),
    			Days:  pulumi.Int(0),
    			Years: pulumi.Int(0),
    		},
    	},
    	ProjectId: pulumi.String("string"),
    	Region:    pulumi.String("string"),
    })
    
    var bucketLockConfigurationResource = new BucketLockConfiguration("bucketLockConfigurationResource", BucketLockConfigurationArgs.builder()
        .bucket("string")
        .rule(BucketLockConfigurationRuleArgs.builder()
            .defaultRetention(BucketLockConfigurationRuleDefaultRetentionArgs.builder()
                .mode("string")
                .days(0)
                .years(0)
                .build())
            .build())
        .projectId("string")
        .region("string")
        .build());
    
    bucket_lock_configuration_resource = scaleway.object.BucketLockConfiguration("bucketLockConfigurationResource",
        bucket="string",
        rule={
            "default_retention": {
                "mode": "string",
                "days": 0,
                "years": 0,
            },
        },
        project_id="string",
        region="string")
    
    const bucketLockConfigurationResource = new scaleway.object.BucketLockConfiguration("bucketLockConfigurationResource", {
        bucket: "string",
        rule: {
            defaultRetention: {
                mode: "string",
                days: 0,
                years: 0,
            },
        },
        projectId: "string",
        region: "string",
    });
    
    type: scaleway:object:BucketLockConfiguration
    properties:
        bucket: string
        projectId: string
        region: string
        rule:
            defaultRetention:
                days: 0
                mode: string
                years: 0
    

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

    Bucket string
    The bucket's name or regional ID.
    Rule Pulumiverse.Scaleway.Object.Inputs.BucketLockConfigurationRule
    Specifies the object lock rule for the specified object.
    ProjectId string
    The project_id you want to attach the resource to
    Region string
    The region you want to attach the resource to
    Bucket string
    The bucket's name or regional ID.
    Rule BucketLockConfigurationRuleArgs
    Specifies the object lock rule for the specified object.
    ProjectId string
    The project_id you want to attach the resource to
    Region string
    The region you want to attach the resource to
    bucket String
    The bucket's name or regional ID.
    rule BucketLockConfigurationRule
    Specifies the object lock rule for the specified object.
    projectId String
    The project_id you want to attach the resource to
    region String
    The region you want to attach the resource to
    bucket string
    The bucket's name or regional ID.
    rule BucketLockConfigurationRule
    Specifies the object lock rule for the specified object.
    projectId string
    The project_id you want to attach the resource to
    region string
    The region you want to attach the resource to
    bucket str
    The bucket's name or regional ID.
    rule BucketLockConfigurationRuleArgs
    Specifies the object lock rule for the specified object.
    project_id str
    The project_id you want to attach the resource to
    region str
    The region you want to attach the resource to
    bucket String
    The bucket's name or regional ID.
    rule Property Map
    Specifies the object lock rule for the specified object.
    projectId String
    The project_id you want to attach the resource to
    region String
    The region you want to attach the resource to

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BucketLockConfiguration 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 BucketLockConfiguration Resource

    Get an existing BucketLockConfiguration 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?: BucketLockConfigurationState, opts?: CustomResourceOptions): BucketLockConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bucket: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            rule: Optional[BucketLockConfigurationRuleArgs] = None) -> BucketLockConfiguration
    func GetBucketLockConfiguration(ctx *Context, name string, id IDInput, state *BucketLockConfigurationState, opts ...ResourceOption) (*BucketLockConfiguration, error)
    public static BucketLockConfiguration Get(string name, Input<string> id, BucketLockConfigurationState? state, CustomResourceOptions? opts = null)
    public static BucketLockConfiguration get(String name, Output<String> id, BucketLockConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:object:BucketLockConfiguration    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:
    Bucket string
    The bucket's name or regional ID.
    ProjectId string
    The project_id you want to attach the resource to
    Region string
    The region you want to attach the resource to
    Rule Pulumiverse.Scaleway.Object.Inputs.BucketLockConfigurationRule
    Specifies the object lock rule for the specified object.
    Bucket string
    The bucket's name or regional ID.
    ProjectId string
    The project_id you want to attach the resource to
    Region string
    The region you want to attach the resource to
    Rule BucketLockConfigurationRuleArgs
    Specifies the object lock rule for the specified object.
    bucket String
    The bucket's name or regional ID.
    projectId String
    The project_id you want to attach the resource to
    region String
    The region you want to attach the resource to
    rule BucketLockConfigurationRule
    Specifies the object lock rule for the specified object.
    bucket string
    The bucket's name or regional ID.
    projectId string
    The project_id you want to attach the resource to
    region string
    The region you want to attach the resource to
    rule BucketLockConfigurationRule
    Specifies the object lock rule for the specified object.
    bucket str
    The bucket's name or regional ID.
    project_id str
    The project_id you want to attach the resource to
    region str
    The region you want to attach the resource to
    rule BucketLockConfigurationRuleArgs
    Specifies the object lock rule for the specified object.
    bucket String
    The bucket's name or regional ID.
    projectId String
    The project_id you want to attach the resource to
    region String
    The region you want to attach the resource to
    rule Property Map
    Specifies the object lock rule for the specified object.

    Supporting Types

    BucketLockConfigurationRule, BucketLockConfigurationRuleArgs

    defaultRetention Property Map
    The default retention for the lock.

    BucketLockConfigurationRuleDefaultRetention, BucketLockConfigurationRuleDefaultRetentionArgs

    Mode string
    The default object lock retention mode you want to apply to new objects placed in the specified bucket. Valid values are GOVERNANCE or COMPLIANCE. Refer to the dedicated documentation for more information on retention modes.
    Days int
    The number of days you want to specify for the default retention period.
    Years int
    The number of years you want to specify for the default retention period.
    Mode string
    The default object lock retention mode you want to apply to new objects placed in the specified bucket. Valid values are GOVERNANCE or COMPLIANCE. Refer to the dedicated documentation for more information on retention modes.
    Days int
    The number of days you want to specify for the default retention period.
    Years int
    The number of years you want to specify for the default retention period.
    mode String
    The default object lock retention mode you want to apply to new objects placed in the specified bucket. Valid values are GOVERNANCE or COMPLIANCE. Refer to the dedicated documentation for more information on retention modes.
    days Integer
    The number of days you want to specify for the default retention period.
    years Integer
    The number of years you want to specify for the default retention period.
    mode string
    The default object lock retention mode you want to apply to new objects placed in the specified bucket. Valid values are GOVERNANCE or COMPLIANCE. Refer to the dedicated documentation for more information on retention modes.
    days number
    The number of days you want to specify for the default retention period.
    years number
    The number of years you want to specify for the default retention period.
    mode str
    The default object lock retention mode you want to apply to new objects placed in the specified bucket. Valid values are GOVERNANCE or COMPLIANCE. Refer to the dedicated documentation for more information on retention modes.
    days int
    The number of days you want to specify for the default retention period.
    years int
    The number of years you want to specify for the default retention period.
    mode String
    The default object lock retention mode you want to apply to new objects placed in the specified bucket. Valid values are GOVERNANCE or COMPLIANCE. Refer to the dedicated documentation for more information on retention modes.
    days Number
    The number of days you want to specify for the default retention period.
    years Number
    The number of years you want to specify for the default retention period.

    Import

    Bucket lock configurations can be imported using the {region}/{bucketName} identifier, as shown below:

    bash

    $ pulumi import scaleway:object/bucketLockConfiguration:BucketLockConfiguration some_bucket fr-par/some-bucket
    

    ~> Important: The project_id attribute has a particular behavior with s3 products because the s3 API is scoped by project.

    If you are using a project different from the default one, you have to specify the project ID at the end of the import command.

    bash

    $ pulumi import scaleway:object/bucketLockConfiguration:BucketLockConfiguration some_bucket fr-par/some-bucket@xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx
    

    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