highbond_collection (Resource)
Schema
Required
name | String | The name of the collection |
Optional
description | String | The description of the collection |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
type | String | The type of the collection |
Read-Only
archived | Boolean | Specifies if the collection is archived (in a read-only state) |
created_at | String | The date the collection was created |
default | Boolean | Specifies if the collection is a default (system created) collection |
updated_at | String | The date the collection was updated |
Example Usage
resource "highbond_collection" "main" {
name = "Example collection"
description = "Dummy description"
type = "RegularProject"
force_updates = true // Create only with force update changes
}