Manage service accounts¶
Note
In the Juju ecosystem, service accounts are supported only when using JAAS.
Manage access to a service account¶
When using Juju with JAAS, to grant access to a Juju controller connected 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 list of desired 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]
}