-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathfides.toml
61 lines (51 loc) · 1.23 KB
/
fides.toml
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
[database]
server = "fides-db"
user = "postgres"
password = "fides"
port = "5432"
db = "fides"
test_db = "fides_test"
[credentials]
app_postgres = {connection_string="postgresql+psycopg2://postgres:fides@fides-db:5432/fides"}
[logging]
level = "INFO"
log_pii = true
[cli]
server_host = "localhost"
server_port = 8080
[user]
analytics_opt_out = false
[redis]
host = "redis"
password = "testpassword"
port = 6379
charset = "utf8"
default_ttl_seconds = 604800
db_index = 0
ssl = false
ssl_cert_reqs = "required"
[security]
cors_origins = [ "http://localhost", "http://localhost:8080", "http://localhost:3000", "http://localhost:3001",]
encoding = "UTF-8"
root_username = "root_user"
root_password = "Testpassword1!"
app_encryption_key = "OLMkv91j8DHiDAULnK5Lxx3kSCov30b3"
oauth_root_client_id = "fidesadmin"
oauth_root_client_secret = "fidesadminsecret"
drp_jwt_secret = "secret"
env = "dev"
[execution]
masking_strict = true
require_manual_request_approval = false
task_retry_backoff = 1
subject_identity_verification_required = false
task_retry_count = 0
task_retry_delay = 1
[admin_ui]
enabled = true
[celery]
event_queue_prefix = "fides_worker"
task_default_queue = "fides"
task_always_eager = true
[notifications]
notification_service_type = "mailgun"