-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: synchronizing help from snyk/user-docs
- Loading branch information
1 parent
43bfb4e
commit ecc492c
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Config environment | ||
|
||
**Note:** This command will be available as of CLI version 1.1293.0. | ||
|
||
## Usage | ||
|
||
`snyk config environment <ENVIRONMENT>` | ||
|
||
## Description | ||
|
||
The `snyk config environment` command is provided for your convenience to make changing the endpoint used in the CLI easier and safer. | ||
|
||
The outcome is almost the same as `snyk config set endpoint=<URL>` but in addition, the `snyk config environment` command does the following: | ||
|
||
- Supports aliases for environments to avoid the use of full URLs | ||
- Performs basic checks to avoid ambiguous or unexpected configuration | ||
- Clears existing authentication and organization settings, which are expected to be environment-specific | ||
|
||
## Debug | ||
|
||
Use the `-d` option to output the debug logs. | ||
|
||
## Option | ||
|
||
`--no-check` | ||
|
||
Skip the basic checks for ambiguous or unexpected configuration. | ||
|
||
Use only if the reported configuration issues are intentional and can be ignored. Otherwise, the configuration might not work as expected. | ||
|
||
## Supported environment URLs mappings | ||
|
||
- default => https://api.snyk.io  | ||
- SNYK-US-01 => https://api.snyk.io  | ||
- SNYK-US-02 => https://api.us.snyk.io  | ||
- SNYK-AU-01 => https://api.au.snyk.io  | ||
- SNYK-EU-01 => https://api.eu.snyk.io  | ||
- SNYK-GOV-01 => https://api.snykgov.io | ||
|
||
## Examples | ||
|
||
``` | ||
snyk config environment default | ||
snyk config environment SNYK-EU-01 | ||
snyk config environment SNYK-AU-01 | ||
snyk config environment SNYK-AU-01 --no-check | ||
snyk config environment https://api.eu.snyk.io | ||
``` |