Skip to main content
Version: Latest Version (2.9.1)

highbond_strategy_risk_comment (Resource)

Schema

Required

strategy_risk_idNumber The ID of the strategy risk that this comment is for
textString The text of the comment

Optional

idString The ID of this resource.

Read-Only

attachmentsList of Object Attachments uploaded to the comment.
Nested Schema for `attachments`

Read-Only

created_atString
idString
nameString
updated_atString
urlString
created_atString The timestamp identifying when the comment was created.
updated_atString The timestamp identifying when the comment was last updated.
user_idString The identifier for the user who made the comment.

Example Usage

resource "highbond_strategy_risk" "testRisk" {
title = "Nandana Test Risk"
}
resource "highbond_strategy_risk_comment" "riskcomment" {
strategy_risk_id = highbond_strategy_risk.testRisk.id
text = "Text Update"
}