Resource nexus_blobstore_azure

Use this resource to create a Nexus Azure blobstore.

Example Usage

resource "nexus_blobstore_azure" "example" {
  name = "example"

  bucket_configuration {
    account_name = "example-account-name"
    authentication {
      authentication_method = "ACCOUNTKEY"
      account_key           = "example-account-key"
    }
    container_name = "example-container-name"
  }

  soft_quota {
    limit = 1024
    type  = "spaceRemainingQuota"
  }
}

Schema

Required

Optional

Read-Only

Nested Schema for bucket_configuration

Required:

Nested Schema for bucket_configuration.authentication

Required:

Optional:

Nested Schema for soft_quota

Required:

Import is supported using the following syntax:

# import using the name of blobstore
terraform import nexus_blobstore_azure.example example