Skip to main content
Version: Latest Version (2.9.1)

highbond_result_file (Resource)

Schema

Required

nameString The name of the results file
project_idNumber The ID of the project

Optional

actual_end_dateString Actual end date
actual_milestone_dateString Actual milestone date
actual_start_dateString Actual start date
custom_attributesBlock Set An array of custom attributes defined on the project type used by the project this results file is from
Nested Schema for `custom_attributes`

Optional

idString The ID of this custom attribute. Optional if term is included
termString The user defined term used to identify this custom attribute. Optional if id is included
valueSet of String The value or values (for multiselect) for this custom attribute
descriptionString A detailed description of the results file
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
planned_end_dateString Planned end date
planned_milestone_dateString Planned milestone date
planned_start_dateString Planned start date
positionNumber The value that determines the order in which it is displayed in the index action. position must be a value between 1 and 2147483647
reference_idString The results id, reference number, or code for the results file

Read-Only

created_atString The timestamp identifying when the result file was created
updated_atString The timestamp identifying when the result file was last updated

Example Usage

resource "highbond_result_file" "main3" {
project_id = highbond_project.main.id
name = "Results File Name"
reference_id = "BPWS1"
description = "<h1>Result file heading</h1><p>Result file description.</p>"
position = 4
planned_start_date = "2020-12-01"
planned_end_date = "2021-12-01"
actual_start_date = "2020-12-05"
actual_end_date = "2021-12-05"
actual_milestone_date = "2020-12-10"
planned_milestone_date = "2020-12-05"
force_updates = true // Create only with force update changes

custom_attributes {
term = "Remarks"
value = ["Remarks"]
}

custom_attributes {
term = "DropDown"
value = ["DropDown1"]
}


custom_attributes {
term = "MultipleChoice"
value = ["Choice1"]
}

}