forked from mtxr/SublimeText-SQLTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use env_optional to pass password through
- Loading branch information
Kyle Foreman
authored and
Taras Kopets
committed
Mar 4, 2019
1 parent
d0717ba
commit 36526f0
Showing
2 changed files
with
6 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -88,10 +88,12 @@ | |
"database": "database", | ||
// for possible authentication configurations see | ||
// https://docs.snowflake.net/manuals/user-guide/snowsql-start.html#authenticator | ||
// if using "snowflake", need to set SNOWSQL_PWD environment variable | ||
"user" : "[email protected]", | ||
"account" : "account_name", | ||
"auth": : "snowflake | externalbrowser | <okta-url>" | ||
// if using "auth": "snowflake", provide a password | ||
// if using "auth": "externalbrowser" or "<okta-url>", no password needed | ||
"password": "pwd" | ||
} | ||
*/ | ||
}, | ||
|