Skip to main content
Version: Latest Version (2.9.1)

highbond_impact_report_target (Resource)

Schema

Required

nameString The unique name of the report target
report_idString Id of the Report to be linked to
target_typeString HighBond resource type. Ex- Asset Type in the context of Asset Inventory

Optional

idString The ID of this resource.
positionNumber The order of the report targets to be displayed
target_resourceString HighBond resource. Ex- Asset in the context of Asset Inventory
target_resource_idString HighBond resource ID. Ex- Asset ID in the context of Asset Inventory
target_type_idString HighBond resource type ID. Ex- Asset Type ID in the context of Asset Inventory
variablesMap of String Variables required by the graphql

Read-Only

report_generateString The format of the report to generate
report_group_byString group by report format
report_nameString The unique name of the report

Example Usage

resource "highbond_impact_report_target" "main" {
name = "Critical Assets"
report_id = highbond_impact_report.main.id
target_type = "asset_type"
target_type_id = highbond_asset_type.main.id
target_resource = "asset"
target_resource_id = highbond_asset.main.id
position = 1
variables = {
id = highbond_asset_type.main.id
format = "csv"
symbolic_name = "it_asset___cloud"
}
}