sotoon_iam_users (Data Source)
Fetches list of users from the specified workspace
Example Usage
data "sotoon_workspace" "mycompany" {
id = "ee6f89b5-e07c-42f1-9462-05cec9cd92d8" # Workspace ID
}
data "sotoon_iam_group" "deployers" {
workspace_id = data.sotoon_workspace.mycompany.id
name = "deployers"
}
# Retrieve all users of the workspace
data "sotoon_iam_users" "all" {
workspace_id = data.sotoon_workspace.mycompany.id
}
output "all_users" {
description = "All users in the workspace"
value = data.sotoon_iam_users.all.users
}
# Retrieve all users of the "deployers" group
data "sotoon_iam_users" "deployers" {
workspace_id = data.sotoon_workspace.mycompany.id
group_id = data.sotoon_iam_group.deployers.id
}
output "group_users" {
description = "All users in the group"
value = data.sotoon_iam_users.deployers.users
}
Schema
Required
workspace_id
(String) ID of the workspace which users will be retrieved.
Optional
group_id
(String) ID of the group which users will be retrieved. Set this attribute if you want to get list of users of a group.
Read-Only
id
(String) Identifier of user set.users
(Attributes List) List of retrieved users. (see below for nested schema)
Nested Schema for users
Required:
email
(String) Email address of the retrived user.id
(String) ID of the user.name
(String) Name of the retrived user.workspace_id
(String) Workspace which user is retrived from that.