highbond_robot_app (Resource)
Schema
Required
| project_file_path | String | The .acl file containing the analytic script in binary format | 
| robot_id | String | The ID of the robot | 
Optional
| code_page | Number | The character encoding of the uploaded .acl file | 
| comment | String | An informative statement in the version history of the script | 
| id | String | The ID of this resource. | 
| is_unicode | Boolean | Specifies whether the Robots Agent is working with Unicode character encoding of data | 
Read-Only
| created_at | String | The date the robot was created | 
| version | Number | The script version of the robot | 
Example Usage
resource "highbond_robot_app" "main" {
  robot_id          = highbond_robot.main.id
  comment           = "09zwy0quvi"
  project_file_path = "../test/data/CloudAgentTest-Uni.ACL"
  is_unicode        = true
}
