Skip to main content
Version: Latest Version (2.9.1)

highbond_analysis (Resource)

Schema

Required

collection_idNumber The Id of the collection
nameString The name of the analysis

Optional

descriptionString The description of the analysis
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Read-Only

created_atString The date the analysis was created
updated_atString The date the analysis was updated

Example Usage

resource "highbond_analysis" "main" {
collection_id = highbond_collection.main.id
name = "Example analysis"
description = "Dummy description"
force_updates = true // Create only with force update changes
}