The resource allows you to create a self-managed worker object.
resource "boundary_worker" "controller_led" {
scope_id = "global"
name = "worker 1"
description = "self managed worker with controller led auth"
}
resource "boundary_worker" "worker_led" {
scope_id = "global"
name = "worker 2"
description = "self managed worker with worker led auth"
worker_generated_auth_token = var.worker_generated_auth_token
}
description
(String) The description for the worker.name
(String) The name for the worker.scope_id
(String) The scope for the worker. Defaults to global
.worker_generated_auth_token
(String) The worker authentication token required to register the worker for the worker-led authentication flow. Leaving this blank will result in a controller generated token.address
(String) The accessible address of the self managed worker.authorized_actions
(List of String) A list of actions that the worker is entitled to perform.controller_generated_activation_token
(String) A single use token generated by the controller to be passed to the self-managed worker.id
(String) The ID of the worker.release_version
(Number) The version of the Boundary binary running on the self managed worker.Import is supported using the following syntax:
terraform import boundary_worker.foo <my-id>