Resource nexus_blobstore_group

Use this resource to create a Nexus group blobstore.

Example Usage

resource "nexus_blobstore_group" "example" {
  name        = "group-example"
  fill_policy = "roundRobin"
  members = [
    nexus_blobstore_file.one.name,
    nexus_blobstore_file.two.name
  ]
}

Schema

Required

Optional

Read-Only

Nested Schema for soft_quota

Required:

Import is supported using the following syntax:

# import using the name of blobstore
terraform import nexus_blobstore_group.example group-example