Skip to main content
Version: Latest Version (2.9.1)

highbond_robot_working_file (Resource)

Schema

Required

file_nameString The name of the related file
robot_idString The ID of the robot

Optional

environmentString The environment of the Robot working file
file_pathString Path of the downloaded template
idString The ID of this resource.
overwriteBoolean 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
}