You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when I want to connect to a cluster I need to load it which means manually entering the cluster URL, authority id and database. Then we go to the microsoft login page.
Instead it would be useful if I could define in the settings some database and allow to extract their credentials from environment variables.
For example in the settings I would have something like:
Currently, when I want to connect to a cluster I need to load it which means manually entering the cluster URL, authority id and database. Then we go to the microsoft login page.
Instead it would be useful if I could define in the settings some database and allow to extract their credentials from environment variables.
For example in the settings I would have something like:
"databases": [{
"database_id": "db1"
"database": "my_database1"
"cluster": "https://my_cluster.kusto.windows.net",
"authority_id": "${authority_id_env_var_for_cluster1}",
"client_id": "${client_id_env_var_for_cluster1}",
"client_secret": "${client_secret_env_var_for_cluster1}",
},{...}]
Then I would be able to give a command: load db1 and the connection would be configured where it gets the credentials from environment variables.
The text was updated successfully, but these errors were encountered: