dbsafedump 0.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,34 @@
1
+ # DBSafeDump Configuration
2
+ # Generated by dbsafedump config
3
+
4
+ project: my-project
5
+
6
+ # Salt for deterministic masking (change = re-mask all data)
7
+ salt: CHANGE_ME_GENERATE_NEW_SALT
8
+
9
+ # Database connections
10
+ connections:
11
+ source:
12
+ driver: mysql
13
+ host: localhost
14
+ port: 3306
15
+ database: your_database
16
+ username: your_username
17
+ password: your_password
18
+
19
+ # Tables to process (supports * wildcard, e.g. "logs_*")
20
+ tables:
21
+ exclude: []
22
+ include: []
23
+ truncate: []
24
+ keyColumns: {}
25
+
26
+ # Masking rules for specific columns
27
+ rules: {}
28
+
29
+ # Options
30
+ options:
31
+ batchSize: 5000
32
+ addDropTable: false
33
+ addCreateTable: true
34
+ transaction: true