-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathoutput.txt
More file actions
30 lines (22 loc) · 930 Bytes
/
output.txt
File metadata and controls
30 lines (22 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
>>> [CLI] secrets create-scope test-secret-scope-[UNIQUE_NAME]
>>> [CLI] bundle deployment bind secret_scope1 test-secret-scope-[UNIQUE_NAME] --auto-approve
Updating deployment state...
Successfully bound secret_scope with an id 'test-secret-scope-[UNIQUE_NAME]'
Run 'bundle deploy' to deploy changes to your workspace
>>> [CLI] secrets list-scopes -o json
{
"backend_type": "DATABRICKS",
"name": "test-secret-scope-[UNIQUE_NAME]"
}
>>> [CLI] bundle deployment unbind secret_scope1
Updating deployment state...
>>> [CLI] bundle destroy --auto-approve
All files and directories at the following location will be deleted: /Workspace/Users/[USERNAME]/.bundle/bind-secret-scope-test-[UNIQUE_NAME]/default
Deleting files...
Destroy complete!
>>> [CLI] secrets list-scopes -o json
{
"backend_type": "DATABRICKS",
"name": "test-secret-scope-[UNIQUE_NAME]"
}
>>> [CLI] secrets delete-scope test-secret-scope-[UNIQUE_NAME]