mirror of
https://github.com/googleworkspace/cli.git
synced 2026-04-19 22:05:32 +10:00
* feat!: remove multi-account, DWD, and impersonation support BREAKING CHANGE: Remove domain-wide delegation, multi-account support, and impersonation from the CLI authentication flow. Removed: - `gws auth list` and `gws auth default` commands - `--account` flag from `gws auth login` and `gws auth logout` - `GOOGLE_WORKSPACE_CLI_ACCOUNT` env var - `GOOGLE_WORKSPACE_CLI_IMPERSONATED_USER` env var - Per-account credential storage (accounts.json registry) - Service account impersonation (subject/DWD) Preserved: - `GOOGLE_WORKSPACE_CLI_TOKEN` (raw access token) - `GOOGLE_WORKSPACE_CLI_CREDENTIALS_FILE` (SA key path) - `GOOGLE_WORKSPACE_CLI_CLIENT_ID` / `CLIENT_SECRET` (OAuth config) - `GOOGLE_WORKSPACE_CLI_CONFIG_DIR` (config dir override) * chore: update changeset description * docs: remove multi-account and DWD references from docs --------- Co-authored-by: jpoehnelt-bot <jpoehnelt-bot@users.noreply.github.com>
30 lines
1.7 KiB
Plaintext
30 lines
1.7 KiB
Plaintext
# gws — Google Workspace CLI
|
|
# Copy this file to .env and uncomment the variables you need.
|
|
# All variables are optional. See README.md for details.
|
|
|
|
# ── Authentication ────────────────────────────────────────────────
|
|
# Pre-obtained OAuth2 access token (highest priority; bypasses all credential loading)
|
|
# GOOGLE_WORKSPACE_CLI_TOKEN=
|
|
|
|
# Path to OAuth credentials JSON (user or service account)
|
|
# GOOGLE_WORKSPACE_CLI_CREDENTIALS_FILE=
|
|
|
|
# ── OAuth Client ──────────────────────────────────────────────────
|
|
# OAuth client ID and secret (alternative to saving client_secret.json)
|
|
# GOOGLE_WORKSPACE_CLI_CLIENT_ID=
|
|
# GOOGLE_WORKSPACE_CLI_CLIENT_SECRET=
|
|
|
|
# ── Configuration ─────────────────────────────────────────────────
|
|
# Override the config directory (default: ~/.config/gws)
|
|
# GOOGLE_WORKSPACE_CLI_CONFIG_DIR=
|
|
|
|
# ── Model Armor (response sanitization) ──────────────────────────
|
|
# Default Model Armor template (overridden by --sanitize flag)
|
|
# GOOGLE_WORKSPACE_CLI_SANITIZE_TEMPLATE=
|
|
# Sanitization mode: warn (default) or block
|
|
# GOOGLE_WORKSPACE_CLI_SANITIZE_MODE=warn
|
|
|
|
# ── Helpers ───────────────────────────────────────────────────────
|
|
# GCP project ID fallback for gmail watch and events subscribe (overridden by --project)
|
|
# GOOGLE_WORKSPACE_PROJECT_ID=
|