sotoon_iam_user_group_binding (Resource)

Membership relation between a user and a group. This object defiens the membership of a user in a group.

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"
}

data "sotoon_iam_user" "john" {
  workspace_id = data.sotoon_workspace.mycompany.id
  email        = "john.doe@sotoon.ir"
}

# Joining John to the deployers group
resource "sotoon_iam_user_group_binding" "john_is_deployer" {
  user_id      = data.sotoon_iam_user.john.id
  workspace_id = data.sotoon_iam_workspace.mycompany.id
  group_id     = data.sotoon_iam_group.deployers.id
}

Schema

Required

  • group_id (String) The ID of the group to which the user will be binded.
  • user_id (String) ID of binded used to the group.
  • workspace_id (String) Workspace ID of the group.

Read-Only

  • id (String) Unique id of group-user binding
  • last_updated (String) Timestamp of the last Terraform update of the role-user.

Import

Import is supported using the following syntax:

# Replace <user-id>, <group-id> and <workspace-id> with real values
terraform import sotoon_iam_group_user_binding.john_is_deployer "<user-id>:<group-id>:<workspace-id>"

# For example:
terraform import sotoon_iam_group_user_binding.john_is_deployer \
    "b8c133a4-a060-4906-8654-57988dbdf098:34f57a2f-6e4d-4ded-9025-ff00911d3313:ee6f89b5-e07c-42f1-9462-05cec9cd92d8"