highbond_storyboard (Resource)
Schema
Required
config | String | A JSON string storing the configurations of a storyboard |
name | String | The name of the storyboard |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
Read-Only
created_at | String | The date the storyboard was created |
updated_at | String | 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
}