-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasources.example.json
More file actions
61 lines (55 loc) · 1.44 KB
/
datasources.example.json
File metadata and controls
61 lines (55 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"datasources": [
{
"id": "analytics_warehouse",
"type": "redshift",
"name": "Analytics Data Warehouse",
"description": "Primary analytics database",
"connection": {
"host": "your-cluster.abc123.us-west-2.redshift.amazonaws.com",
"port": 5439,
"database": "analytics",
"user": "admin",
"password": "your_redshift_password_here",
"schema": "public"
},
"enabled": true,
"metadata": {
}
},
{
"id": "customer_db",
"type": "postgres",
"name": "Customer Database",
"description": "Operational customer data and transactions",
"connection": {
"host": "postgres.abc123.us-west-2.rds.amazonaws.com",
"port": 5432,
"database": "customers",
"user": "app_user",
"password": "your_postgres_password_here",
"schema": "public"
},
"enabled": true,
"metadata": {
}
},
{
"id": "billing_db",
"type": "aurora",
"name": "billing_aurora Database",
"description": "Billing and invoice data on Aurora PostgreSQL",
"connection": {
"host": "aurora-cluster.cluster-abc123.us-west-2.rds.amazonaws.com",
"port": 5432,
"database": "billing",
"user": "billing_user",
"password": "your_aurora_password_here",
"schema": "public"
},
"enabled": true,
"metadata": {
}
}
]
}