resource "highbond_strategy_factor" "factor" {
name = "testFactor"
// The default value assigned to the "weight" is "1.0."
severities { // Must contain at least two items.
name = "level 1"
value = 1
}
severities {
name = "level 2"
value = 2
}
}
resource "highbond_strategy_factor" "factor1" {
name = "testFactor1"
description = "testFactor"
weight = "1.3"
severities {
name = "level 1"
description = "test 1"
value = 1
}
severities {
name = "level 2"
description = "test 2"
value = 2
}
severities {
name = "level 3"
description = "test 3"
value = 3
}
severities {
name = "level 4"
description = "test 4"
value = 4
}
}
name (String) The name of the strategy risk factorseverities (Block Set, Min: 2) The factor's severity levels (Should have a minimum of 2 items) (see below for nested schema)description (String) The description of the strategy risk factorforce_updates (Boolean) Allows overriding top-level 'create_only' option.weight (String) Numeric weight of the factorcreated_at (String) The timestamp identifying when the strategy factor was createdid (String) The ID of this resource.is_default (Boolean) True for the scoring factors which are automatically createdupdated_at (String) The timestamp identifying when the strategy factor was last updatedseveritiesRequired:
name (String) The name of the severity level (also shown in the assessment table on the UI)value (String) Decimal value of the severity levelOptional:
description (String) Description of the severity levelRead-Only:
id (String) The ID of the severity level