highbond_action (Resource)

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

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 (see below for nested schema)
  • 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) (see below for nested schema)
  • description (String) The description of the action
  • force_updates (Boolean) Allows overriding top-level 'create_only' option.
  • 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
  • id (String) The ID of this resource.
  • updated_at (String) The timestamp identifying when the action was updated

Nested Schema for cc_users

Read-Only:

  • id (String) The ID of this resource.

Nested Schema for custom_attributes

Optional:

  • id (String) The ID of the custom attribute that this custom attribute value is for
  • term (String) The user defined term used to identify the custom attribute
  • value (Set of String) The value or values (for multiselect) to set this custom attribute to