-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.local.example
More file actions
41 lines (30 loc) · 1.41 KB
/
.env.local.example
File metadata and controls
41 lines (30 loc) · 1.41 KB
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
31
32
33
34
35
36
37
38
39
40
41
# Databricks Configuration
# Get these values from your Databricks workspace settings
# Your Databricks workspace hostname (without https://)
DATABRICKS_SERVER_HOSTNAME=your-workspace.cloud.databricks.com
# Your Databricks Personal Access Token
# Generate from: User Settings > Developer > Access tokens
DATABRICKS_PAT_TOKEN=dapi123...your-databricks-pat-token
# Your SQL Warehouse HTTP Path
# Get from: SQL Warehouses > Select warehouse > Connection details
DATABRICKS_HTTP_PATH=/sql/1.0/warehouses/your-warehouse-id
# Skyflow Configuration
# Get these values from your Skyflow vault
# Your Skyflow vault URL
SKYFLOW_VAULT_URL=https://your-vault.vault.skyflowapis.com
# Your Skyflow Personal Access Token
# Generate from: Skyflow Studio > Settings > Tokens
SKYFLOW_PAT_TOKEN=eyJhbGci...your-skyflow-pat-token
# Your Skyflow vault ID
SKYFLOW_VAULT_ID=your-vault-id
# Your Skyflow table name (where PII will be stored)
SKYFLOW_TABLE=customer_data
# Your Skyflow table column name (column that contains PII values)
SKYFLOW_TABLE_COLUMN=pii_values
# Batch size for processing records (default: 25)
SKYFLOW_BATCH_SIZE=25
# Optional: Group Mappings for Role-Based Access Control
# These control which user groups can see real vs tokenized data
PLAIN_TEXT_GROUPS=auditor # Groups that see real data
MASKED_GROUPS=customer_service # Groups that see masked data
REDACTED_GROUPS=marketing # Groups that see redacted data