Use this resource to create a Nexus group blobstore.
resource "nexus_blobstore_group" "example" {
name = "group-example"
fill_policy = "roundRobin"
members = [
nexus_blobstore_file.one.name,
nexus_blobstore_file.two.name
]
}
fill_policy
(String) The policy how to fill the members. Possible values: roundRobin
or writeToFirst
members
(Set of String) List of the names of blob stores that are members of this groupname
(String) Blobstore namesoft_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_group.example group-example