Use this resource to create a Nexus file blobstore.
resource "nexus_blobstore_file" "file" {
name = "blobstore-file"
path = "/nexus-data/blobstore-file"
soft_quota {
limit = 1024000000
type = "spaceRemainingQuota"
}
}
name
(String) Blobstore namepath
(String) The path to the blobstore contents. This can be an absolute path to anywhere on the system nxrm has access to or it can be a path relative to the sonatype-work directorysoft_quota
(Block List, Max: 1) Soft quota of the blobstore (see below for nested schema)available_space_in_bytes
(Number) Available space in Bytesblob_count
(Number) Count of blobsid
(String) Used to identify resource at nexustotal_size_in_bytes
(Number) The total size of the blobstore in Bytessoft_quota
Required:
limit
(Number) The limit in Bytes. Minimum value is 1000000type
(String) The type to use such as spaceRemainingQuota, or spaceUsedQuota
Import is supported using the following syntax:
# import using the name of blobstore
terraform import nexus_blobstore_file.file blobstore-file