highbond_robot_working_file (Resource)
Schema
Required
file_name | String | The name of the related file |
robot_id | String | The ID of the robot |
Optional
environment | String | The environment of the Robot working file |
file_path | String | Path of the downloaded template |
id | String | The ID of this resource. |
overwrite | Boolean | Overwrite an existing working file with the same name. |
Example Usage
// Upload files for workflow/highbond Robots
resource "highbond_robot_working_file" "main" {
robot_id = highbond_robot.main.id
file_name = "data.csv"
file_path = "../test/data/data.csv"
environment = "development"
overwrite = false
}