Skip to content

Commit d7c53ab

Browse files
Add Snowflake authenticator param to docs (#650)
* Add Snowflake authenticator arg to docs * Tweak * make note about not using okta * make user not required --------- Co-authored-by: Ryan Eakman <6326532+eakmanrq@users.noreply.github.com>
1 parent 8af985a commit d7c53ab

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

docs/guides/connections.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,10 @@ A Snowflake connection should be configured as follows:
109109
connections:
110110
my_snowflake_connection:
111111
type: snowflake
112-
user: [username]
113-
password: [password]
114-
account: [account ID]
112+
user: [required if not using Okta, username]
113+
password: [required if using password]
114+
authenticator: [required if using externalbrowser]
115+
account: [required, account ID]
115116
warehouse: [optional, warehouse name]
116117
database: [optional, database name]
117118
role: [optional, user role]

docs/integrations/engines.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,15 @@ sqlmesh_airflow = SQLMeshAirflow(
180180

181181
# Snowflake
182182
## Snowflake - Local/Built-in Scheduler
183-
| Option | Description | Type | Required |
184-
|-------------|------------------------------|:------:|:--------:|
185-
| `user` | The Snowflake username | string | Y |
186-
| `password` | The Snowflake password | string | Y |
187-
| `account` | The Snowflake account name | string | Y |
188-
| `warehouse` | The Snowflake warehouse name | string | N |
189-
| `database` | The Snowflake database name | string | N |
190-
| `role` | The Snowflake role name | string | N |
183+
| Option | Description | Type | Required |
184+
|-----------------|------------------------------------|:------:|:--------:|
185+
| `user` | The Snowflake username | string | N |
186+
| `password` | The Snowflake password | string | N |
187+
| `authenticator` | The Snowflake authenticator method | string | N |
188+
| `account` | The Snowflake account name | string | Y |
189+
| `warehouse` | The Snowflake warehouse name | string | N |
190+
| `database` | The Snowflake database name | string | N |
191+
| `role` | The Snowflake role name | string | N |
191192

192193
## Snowflake - Airflow Scheduler
193194
**Engine Name:** `snowflake`

0 commit comments

Comments
 (0)