Skip to content

Commit d995a03

Browse files
added clarifying comments on user account information needed to connect
1 parent dc334ef commit d995a03

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

docs/setup.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ Please gather the following information before you start setting up:
108108
<summary>AWS instructions</summary>
109109
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
110110
111-
* Create secret for master account username
111+
* Input your Databricks account console admin username to store it in a the secret store
112112
```
113113
databricks --profile e2-sat secrets put --scope sat_scope --key user
114114
```
115115
116-
* Create secret for master account password
116+
* Input your Databricks account console admin account password to store it in a the secret store
117117
118118
```
119119
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:
184184
databricks --profile e2-sat secrets put --scope sat_scope --key client-secret
185185
```
186186
* 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
190190
* Your config in \<SATProject\>/notebooks/Utils/initialize CMD 7 should look like this:
191191
192192
```
@@ -458,8 +458,12 @@ Please gather the following information before you start setting up:
458458
* Resolution:
459459
460460
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
462462
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+
463467
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.
464468
465469
4. Offline install of libraries incase of no PyPI access

0 commit comments

Comments
 (0)