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
Copy file name to clipboardExpand all lines: app/appserver/static/js/build/globalConfig.json
+41-1Lines changed: 41 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,10 @@
146
146
{
147
147
"label": "Azure Active Directory",
148
148
"value": "AAD"
149
+
},
150
+
{
151
+
"label": "Databricks OAuth (M2M)",
152
+
"value": "OAUTH_M2M"
149
153
}
150
154
]
151
155
},
@@ -205,6 +209,42 @@
205
209
"placeholder": "required"
206
210
}
207
211
},
212
+
{
213
+
"field": "oauth_client_id",
214
+
"label": "OAuth Client ID",
215
+
"type": "text",
216
+
"help": "Enter the Client ID from your Databricks service principal.",
217
+
"required": false,
218
+
"defaultValue": "",
219
+
"encrypted": false,
220
+
"validators": [{
221
+
"type": "string",
222
+
"minLength": 0,
223
+
"maxLength": 200,
224
+
"errorMsg": "Max length of OAuth Client ID is 200"
225
+
}],
226
+
"options": {
227
+
"placeholder": "required"
228
+
}
229
+
},
230
+
{
231
+
"field": "oauth_client_secret",
232
+
"label": "OAuth Client Secret",
233
+
"type": "text",
234
+
"help": "Enter the OAuth secret from your Databricks service principal.",
235
+
"required": false,
236
+
"defaultValue": "",
237
+
"encrypted": true,
238
+
"validators": [{
239
+
"type": "string",
240
+
"minLength": 0,
241
+
"maxLength": 500,
242
+
"errorMsg": "Max length of OAuth Client Secret is 500"
243
+
}],
244
+
"options": {
245
+
"placeholder": "required"
246
+
}
247
+
},
208
248
{
209
249
"field": "databricks_pat",
210
250
"label": "Databricks Access Token",
@@ -318,7 +358,7 @@
318
358
"field": "use_for_oauth",
319
359
"label": "Use Proxy for OAuth",
320
360
"defaultValue": 0,
321
-
"tooltip": "Check this box if you want to use proxy just for AAD token generation (https://login.microsoftonline.com/). All other network calls will skip the proxy even if it's enabled.",
361
+
"tooltip": "Check this box if you want to use proxy just for Azure AD token generation (https://login.microsoftonline.com/). All other network calls (including Databricks API and OAuth M2M) will skip the proxy even if it's enabled.",
0 commit comments