skip to Main Content

C#.net Core 6.0 web app connecting to Snowflake from Azure using RSA key in file

I need to connect my .Net Core 6.0 web app from Azure to snowflake. I have RSA key stored locally and in the connection string it is referenced: SnowflakeDbCon": "account=**************;authenticator=snowflake_jwt;user=xxxxxxxx;private_key_file=c:Keysrsa_key.p8;private_key_pwd=yyyyyyyyy;db=dbbbbbbb;schema=MY_SCHEMA;" Code: builder.Services.AddScoped(_=> new SnowflakeDbConnection { ConnectionString = builder.Configuration.GetConnectionString("SnowflakeDbCon") }); This…

VIEW QUESTION
Back To Top
Search