Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2024 07:15 AM
Step 1: Create Secret Scope
You can create a secret scope using the Databricks REST API as shown below:
python
import requests
import json
# Define the endpoint and headers
url = "https://<databricks-instance>/api/2.0/secrets/scopes/create"
headers = {
"Authorization": "Bearer <your-databricks-token>",
"Content-Type": "application/json"
}
# Define the payload
payload = {
"scope": "aws-secrets-scope",
"initial_manage_principal": "users"
}
# Make the request
response = requests.post(url, headers=headers, data=json.dumps(payload))
if response.status_code == 200:
print("Secret scope created successfully.")
else:
print(f"Failed to create secret scope: {response.text}")
Is this what you are looking for? Please test it once before deploying it in the workload.