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: docs/setup.md
+10-6Lines changed: 10 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -108,12 +108,12 @@ Please gather the following information before you start setting up:
108
108
<summary>AWS instructions</summary>
109
109
Create username secret and password secret of administrative user id and password as "user" and "pass" under the above "sat_scope" scope using Databricks Secrets CLI
110
110
111
-
* Create secret for master account username
111
+
* Input your Databricks account console admin username to store it in a the secret store
112
112
```
113
113
databricks --profile e2-sat secrets put --scope sat_scope --key user
114
114
```
115
115
116
-
* Create secret for master account password
116
+
* Input your Databricks account console admin account password to store it in a the secret store
117
117
118
118
```
119
119
databricks --profile e2-sat secrets put --scope sat_scope --key pass
@@ -184,9 +184,9 @@ Please gather the following information before you start setting up:
184
184
databricks --profile e2-sat secrets put --scope sat_scope --key client-secret
185
185
```
186
186
* Update config in \<SATProject\>/notebooks/Utils/initialize CMD 7
187
-
* Set the value for the subscription_id
188
-
* Set the value for the tenant_id
189
-
* Set the value for client_id
187
+
* Set the value for the subscription_id
188
+
* Set the value for the tenant_id
189
+
* Set the value for client_id
190
190
* Your config in \<SATProject\>/notebooks/Utils/initialize CMD 7 should look like this:
191
191
192
192
```
@@ -458,8 +458,12 @@ Please gather the following information before you start setting up:
458
458
* Resolution:
459
459
460
460
Run this following command in your notebook %sh
461
-
curl -X GET -H "Authorization: Basic <base64 of userid:password>" -H "Content-Type: application/json" https://accounts.cloud.databricks.com/api/2.0/accounts/<account_id>/workspaces
461
+
curl -X GET -H "Authorization: Basic /<base64 of userid:password/>" -H "Content-Type: application/json" https://accounts.cloud.databricks.com/api/2.0/accounts/<account_id>/workspaces
462
462
463
+
or
464
+
465
+
%sh curl -u 'user:password' -X GET “Content-Type: application/json” https://accounts.cloud.databricks.com/api/2.0/accounts/119f3ee2-8c38-4cdb-88e1-81c091c378a2/workspaces
466
+
463
467
If you don’t see a JSON with a clean listing of workspaces you are likely having a firewall issue that is blocking calls to the accounts console. Please have your infrastructure team add Databricks accounts.cloud.databricks.com to the allow-list.
464
468
465
469
4. Offline install of libraries incase of no PyPI access
0 commit comments