# faros workspace members

List and change who has access to the workspace

Source: https://faros.sh/docs/reference/cli/commands/workspace-members/

<!-- Generated by scripts/sync-cli-docs.py from faroshq/faros docs/cli. Do not edit by hand; run `make sync-cli-docs`. -->

## Synopsis

Membership is the RBAC unit of a faros workspace: every member is either an
admin (may manage members and settings) or a member. Admins of an
organization can manage every workspace in it.

```bash
faros workspace members                     # who has access, and as what
faros workspace members add alice@example.com --role member
faros workspace members add bob@example.com --role admin --invite   # not signed up yet
faros workspace members set-role alice@example.com admin
faros workspace members remove bob@example.com
```

```bash
faros workspace members [flags]
```

## Options

```text
  -h, --help            help for list
  -o, --output string   Output format: json, yaml, name
```

## Inherited options

```text
      --insecure-skip-tls-verify   Skip TLS certificate verification when talking to the hub
      --kubeconfig string          Path to the kubeconfig file (default: $KUBECONFIG, then ~/.kube/config)
      --org string                 Organization display name or UUID (default: the org that owns the kubeconfig's workspace)
      --workspace string           Workspace display name or UUID (default: the workspace the kubeconfig points at)
```

## See also

- [faros workspace](https://faros.sh/docs/reference/cli/commands/workspace/) — Workspaces of an organization, and who is in them
- [faros workspace members add](https://faros.sh/docs/reference/cli/commands/workspace-members-add/) — Add a member to the workspace (admin only)
- [faros workspace members list](https://faros.sh/docs/reference/cli/commands/workspace-members-list/) — List workspace members
- [faros workspace members remove](https://faros.sh/docs/reference/cli/commands/workspace-members-remove/) — Remove a member from the workspace (admin only)
- [faros workspace members set-role](https://faros.sh/docs/reference/cli/commands/workspace-members-set-role/) — Change a member's role in the workspace (admin only)
