Resource nexus_repository_raw_group

Use this resource to create a group raw repository.

Example Usage

resource "nexus_repository_raw_hosted" "internal" {
  name   = "raw-internal"
  online = true

  storage {
    blob_store_name                = "default"
    strict_content_type_validation = false
    write_policy                   = "ALLOW"
  }

}


resource "nexus_repository_raw_group" "group" {
  name   = "raw-group"
  online = true

  group {
    member_names = [
      nexus_repository_raw_hosted.internal.name,
    ]
  }

  storage {
    blob_store_name                = "default"
    strict_content_type_validation = true
  }
}

Schema

Required

Optional

Read-Only

Nested Schema for group

Required:

Nested Schema for storage

Required:

Optional:

Import is supported using the following syntax:

# import using the name of repository
terraform import nexus_repository_raw_group.group raw-group