Skip to main content
Version: Latest Version (2.9.1)

highbond_storyboard (Resource)

Schema

Required

configString A JSON string storing the configurations of a storyboard
nameString The name of the storyboard

Optional

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

Read-Only

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

Example Usage

resource "highbond_storyboard" "main" {
name = "Example storyboard"
config = <<EOS
{
"panels": [
{
"type": "visualization",
"controlTestId": ${highbond_table.main.id},
"interpretation_id": 5571,
"visualization_id": "c2d9",
"id": "1410"
}
],
"positions": [
{
"id": "1410",
"row": 0,
"col": 0
}
],
"rowConfigs": {},
"globalFilters": []
}

EOS
force_updates = true // Create only with force update changes
}