highbond_strategy_risk_comment (Resource)

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"
}

Schema

Required

  • strategy_risk_id (Number) The ID of the strategy risk that this comment is for
  • text (String) The text of the comment

Read-Only

  • attachments (List of Object) Attachments uploaded to the comment. (see below for nested schema)
  • created_at (String) The timestamp identifying when the comment was created.
  • id (String) The ID of this resource.
  • updated_at (String) The timestamp identifying when the comment was last updated.
  • user_id (String) The identifier for the user who made the comment.

Nested Schema for attachments

Read-Only:

  • created_at (String)
  • id (String)
  • name (String)
  • updated_at (String)
  • url (String)