highbond_time_entry (Resource)
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. | |||||||||
id | String | The ID of this resource. | |||||||||
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. | |||||||||
Nested Schema for `target`Optional
Read-Only
|
Read-Only
created_at | String | The timestamp identifying when the time entry was created. |
updated_at | String | The timestamp identifying when the time entry was last updated. |
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
}