Cli/ref/mw gitlab variable set

From mediawiki.org
< Cli‎ | ref

mw gitlab variable set[edit]

Create a new project or group variable

mw gitlab variable set <key> <value> [flags]

Examples[edit]

glab variable set WITH_ARG "some value"
glab variable set FROM_FLAG -v "some value"
glab variable set FROM_ENV_WITH_ARG "${ENV_VAR}"
glab variable set FROM_ENV_WITH_FLAG -v"${ENV_VAR}"
glab variable set FROM_FILE < secret.txt
cat file.txt | glab variable set SERVER_TOKEN
cat token.txt | glab variable set GROUP_TOKEN -g mygroup --scope=prod

Options[edit]

  -g, --group string   Set variable for a group
  -m, --masked         Whether the variable is masked
  -p, --protected      Whether the variable is protected
  -r, --raw            Whether the variable is treated as a raw string
  -s, --scope string   The environment_scope of the variable. All (*), or specific environments (default "*")
  -t, --type string    The type of a variable: {env_var|file} (default "env_var")
      --value string   The value of a variable

Options inherited from parent commands[edit]

      --help              Help for this command
      --no-interaction    Do not ask any interactive questions
  -R, --repo OWNER/REPO   Select another repository using the OWNER/REPO or `GROUP/NAMESPACE/REPO` format or full URL or git URL
  -v, --verbose count     Increase output verbosity. Example: --verbose=2 or -vv

SEE ALSO[edit]