sotoon_iam_user (Data Source)

Retrieve a user from a workspace

Example Usage

data "sotoon_workspace" "mycompany" {
  id = "ee6f89b5-e07c-42f1-9462-05cec9cd92d8" # Workspace ID
}

data "sotoon_iam_user" "me" {
  workspace_id = data.sotoon_workspace.mycompany.id
  email        = "doe@mycompany.com"
}

Schema

Required

  • email (String) Email address of the retrieved user.
  • workspace_id (String) ID of the workspace which user is retrived from that.

Read-Only

  • id (String) ID of the user.
  • name (String) Name of the retrieved user.