-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
42 lines (42 loc) · 1002 Bytes
/
Copy pathsample.json
File metadata and controls
42 lines (42 loc) · 1002 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
31
32
33
34
35
36
37
38
39
40
41
42
{
"output-file-name": "backup",
"schema": "myschema",
"tables": [
"company_table",
"user_table"
],
"db_profiles": {
"local": {
"name": "local_db",
"user": "postgres",
"password": "root",
"host": "localhost",
"sslmode": "disable",
"port": 5432,
"timeout": 10
},
"development": {
"name": "development_db",
"user": "pgadmin",
"password": "pgpasswd",
"host": "dev.company.com",
"sslmode": "disable",
"port": 5432
}
},
"obscure": {
"company_table": {
"company_name": "[A-z]{5,50}",
"product_name": "[A-Z]{5,20}[-]{0,1}[A-Z]{5,20}",
"role_name": "[A-Z]{5,10}[_]{0,1}[A-Z]{5,10}"
},
"user_table": {
"first_name": "[A-z]{5,50}",
"last_name": "[A-z]{5,50}",
"phone_country_code": "[+]{0,1}[0-9]{1,3}",
"phone_number": "[0-9]{6,15}",
"email": "[a-z]{3,10}@[a-z]{5,10}.example.com",
"driver_license": "[A]{0,1}[0-9]{9}"
}
}
}