1. Packages
  2. Nexus Provider
  3. API Docs
  4. BlobstoreS3
nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers

nexus.BlobstoreS3

Explore with Pulumi AI

nexus logo
nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers

    Use this resource to create a Nexus S3 blobstore.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nexus from "@pulumi/nexus";
    
    const aws = new nexus.BlobstoreS3("aws", {
        bucketConfiguration: {
            bucket: {
                name: "aws-bucket-name",
                region: "us-central-1",
            },
            bucketSecurity: {
                accessKeyId: "<your-aws-access-key-id>",
                secretAccessKey: "<your-aws-secret-access-key>",
            },
        },
        softQuota: {
            limit: 1024,
            type: "spaceRemainingQuota",
        },
    });
    
    import pulumi
    import pulumi_nexus as nexus
    
    aws = nexus.BlobstoreS3("aws",
        bucket_configuration={
            "bucket": {
                "name": "aws-bucket-name",
                "region": "us-central-1",
            },
            "bucket_security": {
                "access_key_id": "<your-aws-access-key-id>",
                "secret_access_key": "<your-aws-secret-access-key>",
            },
        },
        soft_quota={
            "limit": 1024,
            "type": "spaceRemainingQuota",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/nexus/v2/nexus"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nexus.NewBlobstoreS3(ctx, "aws", &nexus.BlobstoreS3Args{
    			BucketConfiguration: &nexus.BlobstoreS3BucketConfigurationArgs{
    				Bucket: &nexus.BlobstoreS3BucketConfigurationBucketArgs{
    					Name:   pulumi.String("aws-bucket-name"),
    					Region: pulumi.String("us-central-1"),
    				},
    				BucketSecurity: &nexus.BlobstoreS3BucketConfigurationBucketSecurityArgs{
    					AccessKeyId:     pulumi.String("<your-aws-access-key-id>"),
    					SecretAccessKey: pulumi.String("<your-aws-secret-access-key>"),
    				},
    			},
    			SoftQuota: &nexus.BlobstoreS3SoftQuotaArgs{
    				Limit: pulumi.Float64(1024),
    				Type:  pulumi.String("spaceRemainingQuota"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nexus = Pulumi.Nexus;
    
    return await Deployment.RunAsync(() => 
    {
        var aws = new Nexus.BlobstoreS3("aws", new()
        {
            BucketConfiguration = new Nexus.Inputs.BlobstoreS3BucketConfigurationArgs
            {
                Bucket = new Nexus.Inputs.BlobstoreS3BucketConfigurationBucketArgs
                {
                    Name = "aws-bucket-name",
                    Region = "us-central-1",
                },
                BucketSecurity = new Nexus.Inputs.BlobstoreS3BucketConfigurationBucketSecurityArgs
                {
                    AccessKeyId = "<your-aws-access-key-id>",
                    SecretAccessKey = "<your-aws-secret-access-key>",
                },
            },
            SoftQuota = new Nexus.Inputs.BlobstoreS3SoftQuotaArgs
            {
                Limit = 1024,
                Type = "spaceRemainingQuota",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nexus.BlobstoreS3;
    import com.pulumi.nexus.BlobstoreS3Args;
    import com.pulumi.nexus.inputs.BlobstoreS3BucketConfigurationArgs;
    import com.pulumi.nexus.inputs.BlobstoreS3BucketConfigurationBucketArgs;
    import com.pulumi.nexus.inputs.BlobstoreS3BucketConfigurationBucketSecurityArgs;
    import com.pulumi.nexus.inputs.BlobstoreS3SoftQuotaArgs;
    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 aws = new BlobstoreS3("aws", BlobstoreS3Args.builder()
                .bucketConfiguration(BlobstoreS3BucketConfigurationArgs.builder()
                    .bucket(BlobstoreS3BucketConfigurationBucketArgs.builder()
                        .name("aws-bucket-name")
                        .region("us-central-1")
                        .build())
                    .bucketSecurity(BlobstoreS3BucketConfigurationBucketSecurityArgs.builder()
                        .accessKeyId("<your-aws-access-key-id>")
                        .secretAccessKey("<your-aws-secret-access-key>")
                        .build())
                    .build())
                .softQuota(BlobstoreS3SoftQuotaArgs.builder()
                    .limit(1024)
                    .type("spaceRemainingQuota")
                    .build())
                .build());
    
        }
    }
    
    resources:
      aws:
        type: nexus:BlobstoreS3
        properties:
          bucketConfiguration:
            bucket:
              name: aws-bucket-name
              region: us-central-1
            bucketSecurity:
              accessKeyId: <your-aws-access-key-id>
              secretAccessKey: <your-aws-secret-access-key>
          softQuota:
            limit: 1024
            type: spaceRemainingQuota
    

    Create BlobstoreS3 Resource

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

    Constructor syntax

    new BlobstoreS3(name: string, args: BlobstoreS3Args, opts?: CustomResourceOptions);
    @overload
    def BlobstoreS3(resource_name: str,
                    args: BlobstoreS3Args,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def BlobstoreS3(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    bucket_configuration: Optional[BlobstoreS3BucketConfigurationArgs] = None,
                    name: Optional[str] = None,
                    soft_quota: Optional[BlobstoreS3SoftQuotaArgs] = None)
    func NewBlobstoreS3(ctx *Context, name string, args BlobstoreS3Args, opts ...ResourceOption) (*BlobstoreS3, error)
    public BlobstoreS3(string name, BlobstoreS3Args args, CustomResourceOptions? opts = null)
    public BlobstoreS3(String name, BlobstoreS3Args args)
    public BlobstoreS3(String name, BlobstoreS3Args args, CustomResourceOptions options)
    
    type: nexus:BlobstoreS3
    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 BlobstoreS3Args
    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 BlobstoreS3Args
    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 BlobstoreS3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BlobstoreS3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BlobstoreS3Args
    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 blobstoreS3Resource = new Nexus.BlobstoreS3("blobstoreS3Resource", new()
    {
        BucketConfiguration = new Nexus.Inputs.BlobstoreS3BucketConfigurationArgs
        {
            Bucket = new Nexus.Inputs.BlobstoreS3BucketConfigurationBucketArgs
            {
                Expiration = 0,
                Name = "string",
                Region = "string",
                Prefix = "string",
            },
            AdvancedBucketConnection = new Nexus.Inputs.BlobstoreS3BucketConfigurationAdvancedBucketConnectionArgs
            {
                Endpoint = "string",
                ForcePathStyle = false,
                MaxConnectionPoolSize = 0,
                SignerType = "string",
            },
            BucketSecurity = new Nexus.Inputs.BlobstoreS3BucketConfigurationBucketSecurityArgs
            {
                AccessKeyId = "string",
                Role = "string",
                SecretAccessKey = "string",
                SessionToken = "string",
            },
            Encryption = new Nexus.Inputs.BlobstoreS3BucketConfigurationEncryptionArgs
            {
                EncryptionKey = "string",
                EncryptionType = "string",
            },
        },
        Name = "string",
        SoftQuota = new Nexus.Inputs.BlobstoreS3SoftQuotaArgs
        {
            Limit = 0,
            Type = "string",
        },
    });
    
    example, err := nexus.NewBlobstoreS3(ctx, "blobstoreS3Resource", &nexus.BlobstoreS3Args{
    	BucketConfiguration: &nexus.BlobstoreS3BucketConfigurationArgs{
    		Bucket: &nexus.BlobstoreS3BucketConfigurationBucketArgs{
    			Expiration: pulumi.Float64(0),
    			Name:       pulumi.String("string"),
    			Region:     pulumi.String("string"),
    			Prefix:     pulumi.String("string"),
    		},
    		AdvancedBucketConnection: &nexus.BlobstoreS3BucketConfigurationAdvancedBucketConnectionArgs{
    			Endpoint:              pulumi.String("string"),
    			ForcePathStyle:        pulumi.Bool(false),
    			MaxConnectionPoolSize: pulumi.Float64(0),
    			SignerType:            pulumi.String("string"),
    		},
    		BucketSecurity: &nexus.BlobstoreS3BucketConfigurationBucketSecurityArgs{
    			AccessKeyId:     pulumi.String("string"),
    			Role:            pulumi.String("string"),
    			SecretAccessKey: pulumi.String("string"),
    			SessionToken:    pulumi.String("string"),
    		},
    		Encryption: &nexus.BlobstoreS3BucketConfigurationEncryptionArgs{
    			EncryptionKey:  pulumi.String("string"),
    			EncryptionType: pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	SoftQuota: &nexus.BlobstoreS3SoftQuotaArgs{
    		Limit: pulumi.Float64(0),
    		Type:  pulumi.String("string"),
    	},
    })
    
    var blobstoreS3Resource = new BlobstoreS3("blobstoreS3Resource", BlobstoreS3Args.builder()
        .bucketConfiguration(BlobstoreS3BucketConfigurationArgs.builder()
            .bucket(BlobstoreS3BucketConfigurationBucketArgs.builder()
                .expiration(0)
                .name("string")
                .region("string")
                .prefix("string")
                .build())
            .advancedBucketConnection(BlobstoreS3BucketConfigurationAdvancedBucketConnectionArgs.builder()
                .endpoint("string")
                .forcePathStyle(false)
                .maxConnectionPoolSize(0)
                .signerType("string")
                .build())
            .bucketSecurity(BlobstoreS3BucketConfigurationBucketSecurityArgs.builder()
                .accessKeyId("string")
                .role("string")
                .secretAccessKey("string")
                .sessionToken("string")
                .build())
            .encryption(BlobstoreS3BucketConfigurationEncryptionArgs.builder()
                .encryptionKey("string")
                .encryptionType("string")
                .build())
            .build())
        .name("string")
        .softQuota(BlobstoreS3SoftQuotaArgs.builder()
            .limit(0)
            .type("string")
            .build())
        .build());
    
    blobstore_s3_resource = nexus.BlobstoreS3("blobstoreS3Resource",
        bucket_configuration={
            "bucket": {
                "expiration": 0,
                "name": "string",
                "region": "string",
                "prefix": "string",
            },
            "advanced_bucket_connection": {
                "endpoint": "string",
                "force_path_style": False,
                "max_connection_pool_size": 0,
                "signer_type": "string",
            },
            "bucket_security": {
                "access_key_id": "string",
                "role": "string",
                "secret_access_key": "string",
                "session_token": "string",
            },
            "encryption": {
                "encryption_key": "string",
                "encryption_type": "string",
            },
        },
        name="string",
        soft_quota={
            "limit": 0,
            "type": "string",
        })
    
    const blobstoreS3Resource = new nexus.BlobstoreS3("blobstoreS3Resource", {
        bucketConfiguration: {
            bucket: {
                expiration: 0,
                name: "string",
                region: "string",
                prefix: "string",
            },
            advancedBucketConnection: {
                endpoint: "string",
                forcePathStyle: false,
                maxConnectionPoolSize: 0,
                signerType: "string",
            },
            bucketSecurity: {
                accessKeyId: "string",
                role: "string",
                secretAccessKey: "string",
                sessionToken: "string",
            },
            encryption: {
                encryptionKey: "string",
                encryptionType: "string",
            },
        },
        name: "string",
        softQuota: {
            limit: 0,
            type: "string",
        },
    });
    
    type: nexus:BlobstoreS3
    properties:
        bucketConfiguration:
            advancedBucketConnection:
                endpoint: string
                forcePathStyle: false
                maxConnectionPoolSize: 0
                signerType: string
            bucket:
                expiration: 0
                name: string
                prefix: string
                region: string
            bucketSecurity:
                accessKeyId: string
                role: string
                secretAccessKey: string
                sessionToken: string
            encryption:
                encryptionKey: string
                encryptionType: string
        name: string
        softQuota:
            limit: 0
            type: string
    

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

    BucketConfiguration BlobstoreS3BucketConfiguration
    The S3 bucket configuration.
    Name string
    Blobstore name
    SoftQuota BlobstoreS3SoftQuota
    Soft quota of the blobstore
    BucketConfiguration BlobstoreS3BucketConfigurationArgs
    The S3 bucket configuration.
    Name string
    Blobstore name
    SoftQuota BlobstoreS3SoftQuotaArgs
    Soft quota of the blobstore
    bucketConfiguration BlobstoreS3BucketConfiguration
    The S3 bucket configuration.
    name String
    Blobstore name
    softQuota BlobstoreS3SoftQuota
    Soft quota of the blobstore
    bucketConfiguration BlobstoreS3BucketConfiguration
    The S3 bucket configuration.
    name string
    Blobstore name
    softQuota BlobstoreS3SoftQuota
    Soft quota of the blobstore
    bucket_configuration BlobstoreS3BucketConfigurationArgs
    The S3 bucket configuration.
    name str
    Blobstore name
    soft_quota BlobstoreS3SoftQuotaArgs
    Soft quota of the blobstore
    bucketConfiguration Property Map
    The S3 bucket configuration.
    name String
    Blobstore name
    softQuota Property Map
    Soft quota of the blobstore

    Outputs

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

    BlobCount double
    Count of blobs
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalSizeInBytes double
    The total size of the blobstore in Bytes
    BlobCount float64
    Count of blobs
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalSizeInBytes float64
    The total size of the blobstore in Bytes
    blobCount Double
    Count of blobs
    id String
    The provider-assigned unique ID for this managed resource.
    totalSizeInBytes Double
    The total size of the blobstore in Bytes
    blobCount number
    Count of blobs
    id string
    The provider-assigned unique ID for this managed resource.
    totalSizeInBytes number
    The total size of the blobstore in Bytes
    blob_count float
    Count of blobs
    id str
    The provider-assigned unique ID for this managed resource.
    total_size_in_bytes float
    The total size of the blobstore in Bytes
    blobCount Number
    Count of blobs
    id String
    The provider-assigned unique ID for this managed resource.
    totalSizeInBytes Number
    The total size of the blobstore in Bytes

    Look up Existing BlobstoreS3 Resource

    Get an existing BlobstoreS3 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?: BlobstoreS3State, opts?: CustomResourceOptions): BlobstoreS3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            blob_count: Optional[float] = None,
            bucket_configuration: Optional[BlobstoreS3BucketConfigurationArgs] = None,
            name: Optional[str] = None,
            soft_quota: Optional[BlobstoreS3SoftQuotaArgs] = None,
            total_size_in_bytes: Optional[float] = None) -> BlobstoreS3
    func GetBlobstoreS3(ctx *Context, name string, id IDInput, state *BlobstoreS3State, opts ...ResourceOption) (*BlobstoreS3, error)
    public static BlobstoreS3 Get(string name, Input<string> id, BlobstoreS3State? state, CustomResourceOptions? opts = null)
    public static BlobstoreS3 get(String name, Output<String> id, BlobstoreS3State state, CustomResourceOptions options)
    resources:  _:    type: nexus:BlobstoreS3    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:
    BlobCount double
    Count of blobs
    BucketConfiguration BlobstoreS3BucketConfiguration
    The S3 bucket configuration.
    Name string
    Blobstore name
    SoftQuota BlobstoreS3SoftQuota
    Soft quota of the blobstore
    TotalSizeInBytes double
    The total size of the blobstore in Bytes
    BlobCount float64
    Count of blobs
    BucketConfiguration BlobstoreS3BucketConfigurationArgs
    The S3 bucket configuration.
    Name string
    Blobstore name
    SoftQuota BlobstoreS3SoftQuotaArgs
    Soft quota of the blobstore
    TotalSizeInBytes float64
    The total size of the blobstore in Bytes
    blobCount Double
    Count of blobs
    bucketConfiguration BlobstoreS3BucketConfiguration
    The S3 bucket configuration.
    name String
    Blobstore name
    softQuota BlobstoreS3SoftQuota
    Soft quota of the blobstore
    totalSizeInBytes Double
    The total size of the blobstore in Bytes
    blobCount number
    Count of blobs
    bucketConfiguration BlobstoreS3BucketConfiguration
    The S3 bucket configuration.
    name string
    Blobstore name
    softQuota BlobstoreS3SoftQuota
    Soft quota of the blobstore
    totalSizeInBytes number
    The total size of the blobstore in Bytes
    blob_count float
    Count of blobs
    bucket_configuration BlobstoreS3BucketConfigurationArgs
    The S3 bucket configuration.
    name str
    Blobstore name
    soft_quota BlobstoreS3SoftQuotaArgs
    Soft quota of the blobstore
    total_size_in_bytes float
    The total size of the blobstore in Bytes
    blobCount Number
    Count of blobs
    bucketConfiguration Property Map
    The S3 bucket configuration.
    name String
    Blobstore name
    softQuota Property Map
    Soft quota of the blobstore
    totalSizeInBytes Number
    The total size of the blobstore in Bytes

    Supporting Types

    BlobstoreS3BucketConfiguration, BlobstoreS3BucketConfigurationArgs

    bucket Property Map
    The S3 bucket configuration
    advancedBucketConnection Property Map
    Additional connection configurations
    bucketSecurity Property Map
    Additional security configurations
    encryption Property Map
    Additional bucket encryption configurations

    BlobstoreS3BucketConfigurationAdvancedBucketConnection, BlobstoreS3BucketConfigurationAdvancedBucketConnectionArgs

    Endpoint string
    A custom endpoint URL for third party object stores using the S3 API.
    ForcePathStyle bool
    Setting this flag will result in path-style access being used for all requests.
    MaxConnectionPoolSize double
    Setting this value will override the default connection pool size of Nexus of the s3 client for this blobstore.
    SignerType string
    An API signature version which may be required for third party object stores using the S3 API.
    Endpoint string
    A custom endpoint URL for third party object stores using the S3 API.
    ForcePathStyle bool
    Setting this flag will result in path-style access being used for all requests.
    MaxConnectionPoolSize float64
    Setting this value will override the default connection pool size of Nexus of the s3 client for this blobstore.
    SignerType string
    An API signature version which may be required for third party object stores using the S3 API.
    endpoint String
    A custom endpoint URL for third party object stores using the S3 API.
    forcePathStyle Boolean
    Setting this flag will result in path-style access being used for all requests.
    maxConnectionPoolSize Double
    Setting this value will override the default connection pool size of Nexus of the s3 client for this blobstore.
    signerType String
    An API signature version which may be required for third party object stores using the S3 API.
    endpoint string
    A custom endpoint URL for third party object stores using the S3 API.
    forcePathStyle boolean
    Setting this flag will result in path-style access being used for all requests.
    maxConnectionPoolSize number
    Setting this value will override the default connection pool size of Nexus of the s3 client for this blobstore.
    signerType string
    An API signature version which may be required for third party object stores using the S3 API.
    endpoint str
    A custom endpoint URL for third party object stores using the S3 API.
    force_path_style bool
    Setting this flag will result in path-style access being used for all requests.
    max_connection_pool_size float
    Setting this value will override the default connection pool size of Nexus of the s3 client for this blobstore.
    signer_type str
    An API signature version which may be required for third party object stores using the S3 API.
    endpoint String
    A custom endpoint URL for third party object stores using the S3 API.
    forcePathStyle Boolean
    Setting this flag will result in path-style access being used for all requests.
    maxConnectionPoolSize Number
    Setting this value will override the default connection pool size of Nexus of the s3 client for this blobstore.
    signerType String
    An API signature version which may be required for third party object stores using the S3 API.

    BlobstoreS3BucketConfigurationBucket, BlobstoreS3BucketConfigurationBucketArgs

    Expiration double
    How many days until deleted blobs are finally removed from the S3 bucket (-1 to disable)
    Name string
    The name of the S3 bucket
    Region string
    The AWS region to create a new S3 bucket in or an existing S3 bucket's region
    Prefix string
    The S3 blob store (i.e S3 object) key prefix
    Expiration float64
    How many days until deleted blobs are finally removed from the S3 bucket (-1 to disable)
    Name string
    The name of the S3 bucket
    Region string
    The AWS region to create a new S3 bucket in or an existing S3 bucket's region
    Prefix string
    The S3 blob store (i.e S3 object) key prefix
    expiration Double
    How many days until deleted blobs are finally removed from the S3 bucket (-1 to disable)
    name String
    The name of the S3 bucket
    region String
    The AWS region to create a new S3 bucket in or an existing S3 bucket's region
    prefix String
    The S3 blob store (i.e S3 object) key prefix
    expiration number
    How many days until deleted blobs are finally removed from the S3 bucket (-1 to disable)
    name string
    The name of the S3 bucket
    region string
    The AWS region to create a new S3 bucket in or an existing S3 bucket's region
    prefix string
    The S3 blob store (i.e S3 object) key prefix
    expiration float
    How many days until deleted blobs are finally removed from the S3 bucket (-1 to disable)
    name str
    The name of the S3 bucket
    region str
    The AWS region to create a new S3 bucket in or an existing S3 bucket's region
    prefix str
    The S3 blob store (i.e S3 object) key prefix
    expiration Number
    How many days until deleted blobs are finally removed from the S3 bucket (-1 to disable)
    name String
    The name of the S3 bucket
    region String
    The AWS region to create a new S3 bucket in or an existing S3 bucket's region
    prefix String
    The S3 blob store (i.e S3 object) key prefix

    BlobstoreS3BucketConfigurationBucketSecurity, BlobstoreS3BucketConfigurationBucketSecurityArgs

    AccessKeyId string
    An IAM access key ID for granting access to the S3 bucket
    Role string
    An IAM role to assume in order to access the S3 bucket
    SecretAccessKey string
    The secret access key associated with the specified IAM access key ID
    SessionToken string
    An AWS STS session token associated with temporary security credentials which grant access to the S3 bucket
    AccessKeyId string
    An IAM access key ID for granting access to the S3 bucket
    Role string
    An IAM role to assume in order to access the S3 bucket
    SecretAccessKey string
    The secret access key associated with the specified IAM access key ID
    SessionToken string
    An AWS STS session token associated with temporary security credentials which grant access to the S3 bucket
    accessKeyId String
    An IAM access key ID for granting access to the S3 bucket
    role String
    An IAM role to assume in order to access the S3 bucket
    secretAccessKey String
    The secret access key associated with the specified IAM access key ID
    sessionToken String
    An AWS STS session token associated with temporary security credentials which grant access to the S3 bucket
    accessKeyId string
    An IAM access key ID for granting access to the S3 bucket
    role string
    An IAM role to assume in order to access the S3 bucket
    secretAccessKey string
    The secret access key associated with the specified IAM access key ID
    sessionToken string
    An AWS STS session token associated with temporary security credentials which grant access to the S3 bucket
    access_key_id str
    An IAM access key ID for granting access to the S3 bucket
    role str
    An IAM role to assume in order to access the S3 bucket
    secret_access_key str
    The secret access key associated with the specified IAM access key ID
    session_token str
    An AWS STS session token associated with temporary security credentials which grant access to the S3 bucket
    accessKeyId String
    An IAM access key ID for granting access to the S3 bucket
    role String
    An IAM role to assume in order to access the S3 bucket
    secretAccessKey String
    The secret access key associated with the specified IAM access key ID
    sessionToken String
    An AWS STS session token associated with temporary security credentials which grant access to the S3 bucket

    BlobstoreS3BucketConfigurationEncryption, BlobstoreS3BucketConfigurationEncryptionArgs

    EncryptionKey string
    The encryption key.
    EncryptionType string
    The type of S3 server side encryption to use.
    EncryptionKey string
    The encryption key.
    EncryptionType string
    The type of S3 server side encryption to use.
    encryptionKey String
    The encryption key.
    encryptionType String
    The type of S3 server side encryption to use.
    encryptionKey string
    The encryption key.
    encryptionType string
    The type of S3 server side encryption to use.
    encryption_key str
    The encryption key.
    encryption_type str
    The type of S3 server side encryption to use.
    encryptionKey String
    The encryption key.
    encryptionType String
    The type of S3 server side encryption to use.

    BlobstoreS3SoftQuota, BlobstoreS3SoftQuotaArgs

    Limit double
    The limit in Bytes. Minimum value is 1000000
    Type string
    The type to use such as spaceRemainingQuota, or spaceUsedQuota
    Limit float64
    The limit in Bytes. Minimum value is 1000000
    Type string
    The type to use such as spaceRemainingQuota, or spaceUsedQuota
    limit Double
    The limit in Bytes. Minimum value is 1000000
    type String
    The type to use such as spaceRemainingQuota, or spaceUsedQuota
    limit number
    The limit in Bytes. Minimum value is 1000000
    type string
    The type to use such as spaceRemainingQuota, or spaceUsedQuota
    limit float
    The limit in Bytes. Minimum value is 1000000
    type str
    The type to use such as spaceRemainingQuota, or spaceUsedQuota
    limit Number
    The limit in Bytes. Minimum value is 1000000
    type String
    The type to use such as spaceRemainingQuota, or spaceUsedQuota

    Import

    import using the name of blobstore

    $ pulumi import nexus:index/blobstoreS3:BlobstoreS3 aws blobstore-s3
    

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

    Package Details

    Repository
    nexus datadrivers/terraform-provider-nexus
    License
    Notes
    This Pulumi package is based on the nexus Terraform Provider.
    nexus logo
    nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers