highbond_robot (Resource)
Schema
Required
| name | String | The name of the robot | 
Optional
| category | String | The category of the robot | 
| description | String | The description of the robot | 
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
Read-Only
| app_versions_count | Number | The number of analytic script versions committed to the robot. | 
Example Usage
resource "highbond_robot" "main" {
  name          = "March 011 Example Robot"
  category      = "acl"
  description   = "Robot description"
  force_updates = true // Create only with force update changes
}
resource "highbond_robot_app" "main" {
  robot_id          = highbond_robot.main.id
  comment           = "09zwy0quvi"
  project_file_path = "../test/data/CloudAgentTest-Uni.ACL"
  is_unicode        = true
}
resource "highbond_robot_activation" "main" {
  robot_id     = highbond_robot.main.id
  comment      = "activated"
  version      = highbond_robot_app.main.version // Deprecated
  robot_app_id = highbond_robot_app.main.id
}
