highbond_strategy_risk_comment (Resource)
Schema
Required
strategy_risk_id | Number | The ID of the strategy risk that this comment is for |
text | String | The text of the comment |
Optional
id | String | The ID of this resource. |
Read-Only
attachments | List of Object | Attachments uploaded to the comment. | |||||||||||||||
Nested Schema for `attachments`Read-Only
| |||||||||||||||||
created_at | String | The timestamp identifying when the comment was created. | |||||||||||||||
updated_at | String | The timestamp identifying when the comment was last updated. | |||||||||||||||
user_id | String | 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"
}