1. Packages
  2. Linode Provider
  3. API Docs
  4. ObjectStorageKey
Linode v4.37.0 published on Thursday, Apr 10, 2025 by Pulumi

linode.ObjectStorageKey

Explore with Pulumi AI

Provides a Linode Object Storage Key resource. This can be used to create, modify, and delete Linodes Object Storage Keys. For more information, see the Linode APIv4 docs.

Example Usage

The following example shows how one might use this resource to create an Object Storage Key.

import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";

const foo = new linode.ObjectStorageKey("foo", {label: "image-access"});
Copy
import pulumi
import pulumi_linode as linode

foo = linode.ObjectStorageKey("foo", label="image-access")
Copy
package main

import (
	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := linode.NewObjectStorageKey(ctx, "foo", &linode.ObjectStorageKeyArgs{
			Label: pulumi.String("image-access"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;

return await Deployment.RunAsync(() => 
{
    var foo = new Linode.ObjectStorageKey("foo", new()
    {
        Label = "image-access",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.linode.ObjectStorageKey;
import com.pulumi.linode.ObjectStorageKeyArgs;
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 foo = new ObjectStorageKey("foo", ObjectStorageKeyArgs.builder()
            .label("image-access")
            .build());

    }
}
Copy
resources:
  foo:
    type: linode:ObjectStorageKey
    properties:
      label: image-access
Copy

The following example shows a key with limited access.

import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";

const foobar = new linode.ObjectStorageKey("foobar", {
    label: "my-key",
    bucketAccesses: [{
        bucketName: "my-bucket-name",
        region: "us-mia",
        permissions: "read_write",
    }],
});
Copy
import pulumi
import pulumi_linode as linode

foobar = linode.ObjectStorageKey("foobar",
    label="my-key",
    bucket_accesses=[{
        "bucket_name": "my-bucket-name",
        "region": "us-mia",
        "permissions": "read_write",
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := linode.NewObjectStorageKey(ctx, "foobar", &linode.ObjectStorageKeyArgs{
			Label: pulumi.String("my-key"),
			BucketAccesses: linode.ObjectStorageKeyBucketAccessArray{
				&linode.ObjectStorageKeyBucketAccessArgs{
					BucketName:  pulumi.String("my-bucket-name"),
					Region:      pulumi.String("us-mia"),
					Permissions: pulumi.String("read_write"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;

return await Deployment.RunAsync(() => 
{
    var foobar = new Linode.ObjectStorageKey("foobar", new()
    {
        Label = "my-key",
        BucketAccesses = new[]
        {
            new Linode.Inputs.ObjectStorageKeyBucketAccessArgs
            {
                BucketName = "my-bucket-name",
                Region = "us-mia",
                Permissions = "read_write",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.linode.ObjectStorageKey;
import com.pulumi.linode.ObjectStorageKeyArgs;
import com.pulumi.linode.inputs.ObjectStorageKeyBucketAccessArgs;
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 foobar = new ObjectStorageKey("foobar", ObjectStorageKeyArgs.builder()
            .label("my-key")
            .bucketAccesses(ObjectStorageKeyBucketAccessArgs.builder()
                .bucketName("my-bucket-name")
                .region("us-mia")
                .permissions("read_write")
                .build())
            .build());

    }
}
Copy
resources:
  foobar:
    type: linode:ObjectStorageKey
    properties:
      label: my-key
      bucketAccesses:
        - bucketName: my-bucket-name
          region: us-mia
          permissions: read_write
Copy

The following example shows how to grant a key the explicit access to multiple buckets.

import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";

const foo = new linode.ObjectStorageKey("foo", {
    label: "image-access",
    bucketAccesses: [
        {
            bucketName: "foobar1",
            region: "us-mia",
            permissions: "read_write",
        },
        {
            bucketName: "foobar2",
            region: "gb-lon",
            permissions: "read_write",
        },
    ],
});
Copy
import pulumi
import pulumi_linode as linode

foo = linode.ObjectStorageKey("foo",
    label="image-access",
    bucket_accesses=[
        {
            "bucket_name": "foobar1",
            "region": "us-mia",
            "permissions": "read_write",
        },
        {
            "bucket_name": "foobar2",
            "region": "gb-lon",
            "permissions": "read_write",
        },
    ])
Copy
package main

import (
	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := linode.NewObjectStorageKey(ctx, "foo", &linode.ObjectStorageKeyArgs{
			Label: pulumi.String("image-access"),
			BucketAccesses: linode.ObjectStorageKeyBucketAccessArray{
				&linode.ObjectStorageKeyBucketAccessArgs{
					BucketName:  pulumi.String("foobar1"),
					Region:      pulumi.String("us-mia"),
					Permissions: pulumi.String("read_write"),
				},
				&linode.ObjectStorageKeyBucketAccessArgs{
					BucketName:  pulumi.String("foobar2"),
					Region:      pulumi.String("gb-lon"),
					Permissions: pulumi.String("read_write"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;

return await Deployment.RunAsync(() => 
{
    var foo = new Linode.ObjectStorageKey("foo", new()
    {
        Label = "image-access",
        BucketAccesses = new[]
        {
            new Linode.Inputs.ObjectStorageKeyBucketAccessArgs
            {
                BucketName = "foobar1",
                Region = "us-mia",
                Permissions = "read_write",
            },
            new Linode.Inputs.ObjectStorageKeyBucketAccessArgs
            {
                BucketName = "foobar2",
                Region = "gb-lon",
                Permissions = "read_write",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.linode.ObjectStorageKey;
import com.pulumi.linode.ObjectStorageKeyArgs;
import com.pulumi.linode.inputs.ObjectStorageKeyBucketAccessArgs;
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 foo = new ObjectStorageKey("foo", ObjectStorageKeyArgs.builder()
            .label("image-access")
            .bucketAccesses(            
                ObjectStorageKeyBucketAccessArgs.builder()
                    .bucketName("foobar1")
                    .region("us-mia")
                    .permissions("read_write")
                    .build(),
                ObjectStorageKeyBucketAccessArgs.builder()
                    .bucketName("foobar2")
                    .region("gb-lon")
                    .permissions("read_write")
                    .build())
            .build());

    }
}
Copy
resources:
  foo:
    type: linode:ObjectStorageKey
    properties:
      label: image-access
      bucketAccesses:
        - bucketName: foobar1
          region: us-mia
          permissions: read_write
        - bucketName: foobar2
          region: gb-lon
          permissions: read_write
Copy

Create ObjectStorageKey Resource

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

Constructor syntax

new ObjectStorageKey(name: string, args: ObjectStorageKeyArgs, opts?: CustomResourceOptions);
@overload
def ObjectStorageKey(resource_name: str,
                     args: ObjectStorageKeyArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def ObjectStorageKey(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     label: Optional[str] = None,
                     bucket_accesses: Optional[Sequence[ObjectStorageKeyBucketAccessArgs]] = None,
                     regions: Optional[Sequence[str]] = None)
func NewObjectStorageKey(ctx *Context, name string, args ObjectStorageKeyArgs, opts ...ResourceOption) (*ObjectStorageKey, error)
public ObjectStorageKey(string name, ObjectStorageKeyArgs args, CustomResourceOptions? opts = null)
public ObjectStorageKey(String name, ObjectStorageKeyArgs args)
public ObjectStorageKey(String name, ObjectStorageKeyArgs args, CustomResourceOptions options)
type: linode:ObjectStorageKey
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectStorageKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectStorageKeyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectStorageKeyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectStorageKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectStorageKeyArgs
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 objectStorageKeyResource = new Linode.ObjectStorageKey("objectStorageKeyResource", new()
{
    Label = "string",
    BucketAccesses = new[]
    {
        new Linode.Inputs.ObjectStorageKeyBucketAccessArgs
        {
            BucketName = "string",
            Permissions = "string",
            Region = "string",
        },
    },
    Regions = new[]
    {
        "string",
    },
});
Copy
example, err := linode.NewObjectStorageKey(ctx, "objectStorageKeyResource", &linode.ObjectStorageKeyArgs{
	Label: pulumi.String("string"),
	BucketAccesses: linode.ObjectStorageKeyBucketAccessArray{
		&linode.ObjectStorageKeyBucketAccessArgs{
			BucketName:  pulumi.String("string"),
			Permissions: pulumi.String("string"),
			Region:      pulumi.String("string"),
		},
	},
	Regions: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var objectStorageKeyResource = new ObjectStorageKey("objectStorageKeyResource", ObjectStorageKeyArgs.builder()
    .label("string")
    .bucketAccesses(ObjectStorageKeyBucketAccessArgs.builder()
        .bucketName("string")
        .permissions("string")
        .region("string")
        .build())
    .regions("string")
    .build());
Copy
object_storage_key_resource = linode.ObjectStorageKey("objectStorageKeyResource",
    label="string",
    bucket_accesses=[{
        "bucket_name": "string",
        "permissions": "string",
        "region": "string",
    }],
    regions=["string"])
Copy
const objectStorageKeyResource = new linode.ObjectStorageKey("objectStorageKeyResource", {
    label: "string",
    bucketAccesses: [{
        bucketName: "string",
        permissions: "string",
        region: "string",
    }],
    regions: ["string"],
});
Copy
type: linode:ObjectStorageKey
properties:
    bucketAccesses:
        - bucketName: string
          permissions: string
          region: string
    label: string
    regions:
        - string
Copy

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

Label This property is required. string
The label given to this key. For display purposes only.
BucketAccesses List<ObjectStorageKeyBucketAccess>
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
Regions List<string>
A set of regions where the key will grant access to create buckets.


Label This property is required. string
The label given to this key. For display purposes only.
BucketAccesses []ObjectStorageKeyBucketAccessArgs
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
Regions []string
A set of regions where the key will grant access to create buckets.


label This property is required. String
The label given to this key. For display purposes only.
bucketAccesses List<ObjectStorageKeyBucketAccess>
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
regions List<String>
A set of regions where the key will grant access to create buckets.


label This property is required. string
The label given to this key. For display purposes only.
bucketAccesses ObjectStorageKeyBucketAccess[]
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
regions string[]
A set of regions where the key will grant access to create buckets.


label This property is required. str
The label given to this key. For display purposes only.
bucket_accesses Sequence[ObjectStorageKeyBucketAccessArgs]
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
regions Sequence[str]
A set of regions where the key will grant access to create buckets.


label This property is required. String
The label given to this key. For display purposes only.
bucketAccesses List<Property Map>
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
regions List<String>
A set of regions where the key will grant access to create buckets.


Outputs

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

AccessKey string
This keypair's access key. This is not secret.
Id string
The provider-assigned unique ID for this managed resource.
Limited bool
Whether or not this key is a limited access key.
RegionsDetails List<ObjectStorageKeyRegionsDetail>
A set of objects containing the detailed info of the regions where this key can access.
SecretKey string
This keypair's secret key.
AccessKey string
This keypair's access key. This is not secret.
Id string
The provider-assigned unique ID for this managed resource.
Limited bool
Whether or not this key is a limited access key.
RegionsDetails []ObjectStorageKeyRegionsDetail
A set of objects containing the detailed info of the regions where this key can access.
SecretKey string
This keypair's secret key.
accessKey String
This keypair's access key. This is not secret.
id String
The provider-assigned unique ID for this managed resource.
limited Boolean
Whether or not this key is a limited access key.
regionsDetails List<ObjectStorageKeyRegionsDetail>
A set of objects containing the detailed info of the regions where this key can access.
secretKey String
This keypair's secret key.
accessKey string
This keypair's access key. This is not secret.
id string
The provider-assigned unique ID for this managed resource.
limited boolean
Whether or not this key is a limited access key.
regionsDetails ObjectStorageKeyRegionsDetail[]
A set of objects containing the detailed info of the regions where this key can access.
secretKey string
This keypair's secret key.
access_key str
This keypair's access key. This is not secret.
id str
The provider-assigned unique ID for this managed resource.
limited bool
Whether or not this key is a limited access key.
regions_details Sequence[ObjectStorageKeyRegionsDetail]
A set of objects containing the detailed info of the regions where this key can access.
secret_key str
This keypair's secret key.
accessKey String
This keypair's access key. This is not secret.
id String
The provider-assigned unique ID for this managed resource.
limited Boolean
Whether or not this key is a limited access key.
regionsDetails List<Property Map>
A set of objects containing the detailed info of the regions where this key can access.
secretKey String
This keypair's secret key.

Look up Existing ObjectStorageKey Resource

Get an existing ObjectStorageKey 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?: ObjectStorageKeyState, opts?: CustomResourceOptions): ObjectStorageKey
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_key: Optional[str] = None,
        bucket_accesses: Optional[Sequence[ObjectStorageKeyBucketAccessArgs]] = None,
        label: Optional[str] = None,
        limited: Optional[bool] = None,
        regions: Optional[Sequence[str]] = None,
        regions_details: Optional[Sequence[ObjectStorageKeyRegionsDetailArgs]] = None,
        secret_key: Optional[str] = None) -> ObjectStorageKey
func GetObjectStorageKey(ctx *Context, name string, id IDInput, state *ObjectStorageKeyState, opts ...ResourceOption) (*ObjectStorageKey, error)
public static ObjectStorageKey Get(string name, Input<string> id, ObjectStorageKeyState? state, CustomResourceOptions? opts = null)
public static ObjectStorageKey get(String name, Output<String> id, ObjectStorageKeyState state, CustomResourceOptions options)
resources:  _:    type: linode:ObjectStorageKey    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccessKey string
This keypair's access key. This is not secret.
BucketAccesses List<ObjectStorageKeyBucketAccess>
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
Label string
The label given to this key. For display purposes only.
Limited bool
Whether or not this key is a limited access key.
Regions List<string>
A set of regions where the key will grant access to create buckets.


RegionsDetails List<ObjectStorageKeyRegionsDetail>
A set of objects containing the detailed info of the regions where this key can access.
SecretKey string
This keypair's secret key.
AccessKey string
This keypair's access key. This is not secret.
BucketAccesses []ObjectStorageKeyBucketAccessArgs
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
Label string
The label given to this key. For display purposes only.
Limited bool
Whether or not this key is a limited access key.
Regions []string
A set of regions where the key will grant access to create buckets.


RegionsDetails []ObjectStorageKeyRegionsDetailArgs
A set of objects containing the detailed info of the regions where this key can access.
SecretKey string
This keypair's secret key.
accessKey String
This keypair's access key. This is not secret.
bucketAccesses List<ObjectStorageKeyBucketAccess>
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
label String
The label given to this key. For display purposes only.
limited Boolean
Whether or not this key is a limited access key.
regions List<String>
A set of regions where the key will grant access to create buckets.


regionsDetails List<ObjectStorageKeyRegionsDetail>
A set of objects containing the detailed info of the regions where this key can access.
secretKey String
This keypair's secret key.
accessKey string
This keypair's access key. This is not secret.
bucketAccesses ObjectStorageKeyBucketAccess[]
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
label string
The label given to this key. For display purposes only.
limited boolean
Whether or not this key is a limited access key.
regions string[]
A set of regions where the key will grant access to create buckets.


regionsDetails ObjectStorageKeyRegionsDetail[]
A set of objects containing the detailed info of the regions where this key can access.
secretKey string
This keypair's secret key.
access_key str
This keypair's access key. This is not secret.
bucket_accesses Sequence[ObjectStorageKeyBucketAccessArgs]
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
label str
The label given to this key. For display purposes only.
limited bool
Whether or not this key is a limited access key.
regions Sequence[str]
A set of regions where the key will grant access to create buckets.


regions_details Sequence[ObjectStorageKeyRegionsDetailArgs]
A set of objects containing the detailed info of the regions where this key can access.
secret_key str
This keypair's secret key.
accessKey String
This keypair's access key. This is not secret.
bucketAccesses List<Property Map>
Defines this key as a Limited Access Key. Limited Access Keys restrict this Object Storage key’s access to only the bucket(s) declared in this array and define their bucket-level permissions. Not providing this block will not limit this Object Storage Key.
label String
The label given to this key. For display purposes only.
limited Boolean
Whether or not this key is a limited access key.
regions List<String>
A set of regions where the key will grant access to create buckets.


regionsDetails List<Property Map>
A set of objects containing the detailed info of the regions where this key can access.
secretKey String
This keypair's secret key.

Supporting Types

ObjectStorageKeyBucketAccess
, ObjectStorageKeyBucketAccessArgs

BucketName This property is required. string
The unique label of the bucket to which the key will grant limited access.
Permissions This property is required. string
This Limited Access Key’s permissions for the selected bucket. Changing permissions forces the creation of a new Object Storage Key. (read_write, read_only)
Cluster string
The Object Storage cluster where the bucket resides. Deprecated in favor of region.

Deprecated: The cluster attribute in a bucket_access block has been deprecated in favor of region attribute. A cluster value can be converted to a region value by removing -x at the end, for example, a cluster value us-mia-1 can be converted to region value us-mia

Region string
The region where the bucket resides.
BucketName This property is required. string
The unique label of the bucket to which the key will grant limited access.
Permissions This property is required. string
This Limited Access Key’s permissions for the selected bucket. Changing permissions forces the creation of a new Object Storage Key. (read_write, read_only)
Cluster string
The Object Storage cluster where the bucket resides. Deprecated in favor of region.

Deprecated: The cluster attribute in a bucket_access block has been deprecated in favor of region attribute. A cluster value can be converted to a region value by removing -x at the end, for example, a cluster value us-mia-1 can be converted to region value us-mia

Region string
The region where the bucket resides.
bucketName This property is required. String
The unique label of the bucket to which the key will grant limited access.
permissions This property is required. String
This Limited Access Key’s permissions for the selected bucket. Changing permissions forces the creation of a new Object Storage Key. (read_write, read_only)
cluster String
The Object Storage cluster where the bucket resides. Deprecated in favor of region.

Deprecated: The cluster attribute in a bucket_access block has been deprecated in favor of region attribute. A cluster value can be converted to a region value by removing -x at the end, for example, a cluster value us-mia-1 can be converted to region value us-mia

region String
The region where the bucket resides.
bucketName This property is required. string
The unique label of the bucket to which the key will grant limited access.
permissions This property is required. string
This Limited Access Key’s permissions for the selected bucket. Changing permissions forces the creation of a new Object Storage Key. (read_write, read_only)
cluster string
The Object Storage cluster where the bucket resides. Deprecated in favor of region.

Deprecated: The cluster attribute in a bucket_access block has been deprecated in favor of region attribute. A cluster value can be converted to a region value by removing -x at the end, for example, a cluster value us-mia-1 can be converted to region value us-mia

region string
The region where the bucket resides.
bucket_name This property is required. str
The unique label of the bucket to which the key will grant limited access.
permissions This property is required. str
This Limited Access Key’s permissions for the selected bucket. Changing permissions forces the creation of a new Object Storage Key. (read_write, read_only)
cluster str
The Object Storage cluster where the bucket resides. Deprecated in favor of region.

Deprecated: The cluster attribute in a bucket_access block has been deprecated in favor of region attribute. A cluster value can be converted to a region value by removing -x at the end, for example, a cluster value us-mia-1 can be converted to region value us-mia

region str
The region where the bucket resides.
bucketName This property is required. String
The unique label of the bucket to which the key will grant limited access.
permissions This property is required. String
This Limited Access Key’s permissions for the selected bucket. Changing permissions forces the creation of a new Object Storage Key. (read_write, read_only)
cluster String
The Object Storage cluster where the bucket resides. Deprecated in favor of region.

Deprecated: The cluster attribute in a bucket_access block has been deprecated in favor of region attribute. A cluster value can be converted to a region value by removing -x at the end, for example, a cluster value us-mia-1 can be converted to region value us-mia

region String
The region where the bucket resides.

ObjectStorageKeyRegionsDetail
, ObjectStorageKeyRegionsDetailArgs

EndpointType This property is required. string
The type of s3_endpoint available to the user in this region. See Endpoint types for more information.
Id This property is required. string
The ID of the region.
S3Endpoint This property is required. string
The S3-compatible hostname you can use to access the Object Storage buckets in this region.
EndpointType This property is required. string
The type of s3_endpoint available to the user in this region. See Endpoint types for more information.
Id This property is required. string
The ID of the region.
S3Endpoint This property is required. string
The S3-compatible hostname you can use to access the Object Storage buckets in this region.
endpointType This property is required. String
The type of s3_endpoint available to the user in this region. See Endpoint types for more information.
id This property is required. String
The ID of the region.
s3Endpoint This property is required. String
The S3-compatible hostname you can use to access the Object Storage buckets in this region.
endpointType This property is required. string
The type of s3_endpoint available to the user in this region. See Endpoint types for more information.
id This property is required. string
The ID of the region.
s3Endpoint This property is required. string
The S3-compatible hostname you can use to access the Object Storage buckets in this region.
endpoint_type This property is required. str
The type of s3_endpoint available to the user in this region. See Endpoint types for more information.
id This property is required. str
The ID of the region.
s3_endpoint This property is required. str
The S3-compatible hostname you can use to access the Object Storage buckets in this region.
endpointType This property is required. String
The type of s3_endpoint available to the user in this region. See Endpoint types for more information.
id This property is required. String
The ID of the region.
s3Endpoint This property is required. String
The S3-compatible hostname you can use to access the Object Storage buckets in this region.

Package Details

Repository
Linode pulumi/pulumi-linode
License
Apache-2.0
Notes
This Pulumi package is based on the linode Terraform Provider.