https://prefect.io logo
Title
b

Braun Reyes

12/02/2022, 3:45 PM
hola! does anyone know if the snowflake task library connector can support can support private keys with passphrase?
1
the code seems to suggest that you can just use the password argument, but it does not seem to be working
snowflake_credentials = SnowflakeCredentials(
        account="account",
        user="login",
        autocommit=True,
        password=os.getenv("PRIVATE_KEY_PASSPHRASE"),
        private_key="pem bytes from file",
    )
nevermind....support is not released yet
main branch install did it
working as expected now
🙌 1