highbond_robot_file (Resource)
Schema
Required
| file_path | String | A related file that you want to upload | 
| robot_id | String | The ID of the robot | 
Optional
| environment | String | The environment of an analytic script | 
| id | String | The ID of this resource. | 
Read-Only
| created_at | String | The date the robot was created | 
| file_name | String | The name of the related file | 
Example Usage
// For Acl Robot
resource "highbond_robot_file" "main" {
  robot_id    = highbond_robot.main.id
  file_path   = "../test/data/data.csv"
  environment = highbond_robot_activation.main.environment
}
