hola! does anyone know if the snowflake task libr...
# ask-community
b
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
Copy code
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