highbond_time_entry (Resource)

Example Usage

resource "highbond_time_entry" "main" {
  description      = "Time Entry description"
  date             = "2023-03-15"
  time             = 1.88
  position         = 1
  client_delay     = true
  assigned_user_id = "uuid"
  force_updates    = false // Create only with force update changes

  target {
    id   = "187535"
    type = "projects"
  }
}


resource "highbond_time_entry" "main" {
  description      = "Time Entry description"
  date             = "2028-03-15"
  time             = 8.88
  position         = 1
  client_delay     = true
  assigned_user_id = "uuid"
  category_id      = "category_id-123"
  force_updates    = false // Create only with force update changes
}

Schema

Required

  • date (String) The date of the time entry.
  • time (Number) The time of the time entry.

Optional

  • assigned_user_id (String) Auto assigned to creating user ID if not specified.
  • category_id (String) The ID of the category.
  • client_delay (Boolean) Specifies whether project was delayed.
  • description (String) A detailed description of the time entry.
  • force_updates (Boolean) Allows overriding top-level 'create_only' option.
  • position (Number) The value that determines the order in which it is displayed in the index action. Position must be a value between 1 and 2147483647.
  • target (Block List) Specifies the resource that the time entry is associated with. (see below for nested schema)

Read-Only

  • created_at (String) The timestamp identifying when the time entry was created.
  • id (String) The ID of this resource.
  • updated_at (String) The timestamp identifying when the time entry was last updated.

Nested Schema for target

Optional:

  • id (String) The ID of the resource.
  • type (String) The classification of the object. A target can have one of the following types: projects, narratives, objectives, walkthrough_summaries, project_plannings, walkthroughs, control_tests, control_test_plans, project_results, project_files, risk_control_matrices, testing_rounds, risks, controls.

Read-Only:

  • ui_links (String) URL of page providing user interface for target resource.