jroachgolf84 commented on issue #54983:
URL: https://github.com/apache/airflow/issues/54983#issuecomment-3227932640
This is a good first issue! I think that it might make sense to split up a
PR/create multiple issues for each Cloud Provider. If you take a peek at the
docs, it seems the change is quite manageable. We'd need to add two parameters
to the `SnowflakeHook` (if they aren't already there), then add some docs about
the connection type that should be used.
```python
import os
import snowflake.connector
conn = snowflake.connector.connect(
account='<snowflake_account>',
authenticator='WORKLOAD_IDENTITY',
workload_identity_provider='AWS'
)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]