Skip to main content
Version: Latest Version (2.9.1)

highbond_robot_activation (Resource)

Schema

Required

robot_app_idString The ID of the robot app
robot_idString The ID of the robot

Optional

commentString An informative statement in the version history of the script
forceBoolean Overwrites the production scripts with the selected development mode version and ignores conflicts. Forcing the activation sets any existing tasks that are affected by the conflict to an idle status. When a task is set to idle, you must provide the missing parameter input or select the new script names before you can restart the task
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
versionNumber, Deprecated

Read-Only

activated_atString The date when the script was activated
activator_idString The ID of the user
environmentString Purely to be able to create a Task->Activation dependency

Example Usage

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
}

resource "highbond_robot_activation" "script_version" {
robot_id = highbond_robot.main.id
comment = "activated"
version = highbond_robot_script_version.main.version // Deprecated
robot_app_id = highbond_robot_script_version.main.id
}