mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-19 11:31:40 -04:00
* add support for AAD interactive for project data sources * fix whitespace * remove warning message * choose azureMFA if a connection string has both integrated security=true and authentication=active directory interactive
30 lines
918 B
JSON
30 lines
918 B
JSON
{
|
|
"version": "0.0.0",
|
|
"datasources" : [
|
|
{
|
|
"name": "Test Data Source 1",
|
|
"type": "sql_connection_string",
|
|
"version": "0.0.0",
|
|
"data": {
|
|
"connectionString": "Data Source=.;Initial Catalog=testDb;Integrated Security=True"
|
|
}
|
|
},
|
|
{
|
|
"name": "My Other Data Source",
|
|
"type": "sql_connection_string",
|
|
"version": "0.0.0",
|
|
"data": {
|
|
"connectionString": "Data Source=.;Initial Catalog=testDb2;Integrated Security=False"
|
|
}
|
|
},
|
|
{
|
|
"name": "AAD Interactive Data Source",
|
|
"type": "sql_connection_string",
|
|
"version": "0.0.0",
|
|
"data": {
|
|
"connectionString": "Data Source=.;Initial Catalog=testDb3;Authentication='Active Directory Interactive'"
|
|
}
|
|
}
|
|
]
|
|
}
|