Is your feature request related to a problem? Please describe.
snowflake_utils requires the key be encrypted. See line 88-91 of snowflake_utils
- This should be optional to support unencrypted keys
Describe the solution you'd like
Describe alternatives you've considered
Additional context
I know that encrypted keys are recommended, but the Snowflake docs describe both encrypted and unencrypted keys, so ideally feast would support unencrypted keys.
Is your feature request related to a problem? Please describe.
snowflake_utilsrequires the key be encrypted. See line 88-91 ofsnowflake_utilsDescribe the solution you'd like
snowflake_utils: Change tokwargs.get('private_key_passphrase')with defaultNoneparse_private_key_pathtoprivate_key_passphrase: Optional[str] = None. Handle case of unencrypted keys in function.Describe alternatives you've considered
Additional context
I know that encrypted keys are recommended, but the Snowflake docs describe both encrypted and unencrypted keys, so ideally feast would support unencrypted keys.