Skip to main content
Version: Latest Version (2.9.1)

highbond_robot (Resource)

Schema

Required

nameString The name of the robot

Optional

categoryString The category of the robot
descriptionString The description of the robot
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Read-Only

app_versions_countNumber The number of analytic script versions committed to the robot.

Example Usage

resource "highbond_robot" "main" {
name = "March 011 Example Robot"
category = "acl"
description = "Robot description"
force_updates = true // Create only with force update changes
}

resource "highbond_robot_app" "main" {
robot_id = highbond_robot.main.id
comment = "09zwy0quvi"
project_file_path = "../test/data/CloudAgentTest-Uni.ACL"
is_unicode = true
}

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
}