Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 890 Bytes

File metadata and controls

39 lines (30 loc) · 890 Bytes
title categorySlug slug parentDocSlug hidden order
scalr_iam_user
scalr-terraform-provider
provider_datasource_scalr_iam_user
provider_datasources
false
9

Data Source: scalr_iam_user

Retrieves the details of a Scalr user.

Example Usage

data "scalr_iam_user" "example1" {
  id = "user-xxxxxxxxxx"
}

data "scalr_iam_user" "example2" {
  email = "user@test.com"
}

Schema

Optional

  • email (String) An email of a user.
  • id (String) An identifier of a user.

Read-Only

  • full_name (String) A full name of the user.
  • identity_providers (List of String) A list of the identity providers the user belongs to.
  • status (String) A system status of the user.
  • teams (List of String) A list of the team identifiers the user belongs to.
  • username (String) A username of the user.