Manage controllers¶
See also: Juju | Controller
Manage access to a controller¶
Note
At present the Terraform Provider for Juju supports controller access management only for Juju controllers added to JIMM.
When using Juju with JAAS, to grant access to a Juju controller added to JIMM, in your Terraform plan add a resource type juju_jaas_access_controller
. Access can be granted to one or more users, service accounts, roles, and/or groups. You must specify the model UUID, the JAAS controller access level, and the desired list of users, service accounts, roles, and/or groups. For example:
resource "juju_jaas_access_controller" "development" {
access = "administrator"
users = ["[email protected]"]
service_accounts = ["Client-ID-1", "Client-ID-2"]
roles = [juju_jaas_role.development.uuid]
groups = [juju_jaas_group.development.uuid]
}