highbond_action (Resource)
Schema
Required
assigned_by | String | The person who created the action |
due_date | String | pecifies the date the action must be completed by |
issue_id | Number | The ID of the issue |
title | String | The title of the action |
Optional
cc_contacts | List of String | An array of user emails | |||||||||
cc_users | Block List | Specifies one or more users in a HighBond instance that are cc'ed on this action | |||||||||
Nested Schema for `cc_users`Required
| |||||||||||
closed | Boolean | Specifies the state of the action | |||||||||
completed_date | String | Specifies the date that the action was completed or addressed | |||||||||
custom_attributes | Block Set | ||||||||||
Nested Schema for `custom_attributes`Optional
| |||||||||||
description | String | The description of the action | |||||||||
force_updates | Boolean | Allows overriding top-level 'create_only' option. | |||||||||
id | String | The ID of this resource. | |||||||||
include_issue_details | Boolean | If true, the issue details will be included in the response | |||||||||
include_remediation_details | Boolean | If true, the remediation details will be included in the response | |||||||||
owner_email | String | The action owner’s email address | |||||||||
owner_name | String | The action owner | |||||||||
owner_user | String | Specifies the user in a HighBond instance that responsible for the action | |||||||||
priority | String | A user configurable classification that specifies the priority of the action | |||||||||
send_recurring_reminder | Boolean | If true, a recurring email reminder about the action is sent to the owner | |||||||||
status | String | A user configurable classification that specifies the current status of the action | |||||||||
submitted_on | String | Specifies the date that the action was submitted |
Read-Only
created_at | String | The timestamp identifying when the action was created |
updated_at | String | The timestamp identifying when the action was updated |
Example Usage
resource "highbond_action" "main" {
issue_id = highbond_issue.main.id
title = "Title of the action"
due_date = "2020-04-09"
owner_name = "Biswa Ranjan B"
owner_email = "biswa@biswa.com"
send_recurring_reminder = true
include_issue_details = true
include_remediation_details = false
description = "<h1>Action heading</h1><p>Action description.</p>"
priority = "high"
closed = true
completed_date = "2020-01-02"
status = "Audit Verifying"
submitted_on = "2020-01-02"
assigned_by = "uxtXXmLsyy-1y5AFb51A"
cc_contacts = ["pooja.fhf@gamil.com"]
owner_user = "uxtXXmLsyy-1y5AFb51A"
force_updates = true
custom_attributes {
term = "Preferred Language"
value = ["English", "Spanish"]
}
custom_attributes {
term = "Wrap up Date"
value = ["2020-07-01"]
}
cc_users {
id = "Enter a valid UUID here"
}
cc_users {
id = "Enter a valid UUID here"
}
}