| page_title | remscontent_resource Resource - remscontent |
|---|---|
| subcategory | |
| description | Manages a REMS resource, which represents a dataset or service that can be applied for via catalogue items. |
Manages a REMS resource, which represents a dataset or service that can be applied for via catalogue items.
terraform {
required_providers {
remscontent = {
source = "registry.terraform.io/umccr/remscontent"
}
}
}
data "remscontent_license" "example_attachment_license" {
title = "Test Attachment License 2"
}
resource "remscontent_resource" "resource_1" {
organization_id = "Collaborative Centre for Genomic Cancer Medicine"
resource_ext_id = "uri-resource-1"
licenses = [data.remscontent_license.example_attachment_license.id]
archived = false
enabled = true
}organization_id(String) The ID of the organization this resource belongs to.resource_ext_id(String) External resource identifier (e.g. a URI or dataset ID). Must be unique within the organization.
archived(Boolean) Whether this resource is archived. Defaults tofalse.enabled(Boolean) Whether this resource is active. Defaults totrue.licenses(List of Number) List of license IDs that applicants must accept when applying for this resource.
id(Number) Resource internal identifier assigned by REMS.