-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update config.py * Update crypto imports to fideslib and remove legacy file and tests * Update Identity salt * checkpoint, lowercasing all of the things * update more config values to lowercase * fix linting errors, fix config validators * update the configs to use lowercase keys * lowercase the allowed keys * Update create_test_data.py * bump fideslib version * Lowercase config variables * Fix linting issues * Fix some test failures * Fix application fixtures * Remove old celery config options * Sort script imports * Update changelog Co-authored-by: Thomas <[email protected]>
- Loading branch information
1 parent
2f38ec1
commit 19d66d7
Showing
72 changed files
with
409 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
PORT = 8080 | ||
port = 8080 | ||
|
||
[database] | ||
SERVER = "testserver" | ||
USER = "testuser" | ||
PASSWORD = "testpassword" | ||
DB = "testdb" | ||
TEST_DB = "test_testdb" | ||
ENABLED = true | ||
server = "testserver" | ||
user = "testuser" | ||
password = "testpassword" | ||
db = "testdb" | ||
test_db = "test_testdb" | ||
enabled = true | ||
|
||
[redis] | ||
HOST = "testredis" | ||
PASSWORD = "testpassword" | ||
PORT = 1234 | ||
CHARSET = "utf8" | ||
DEFAULT_TTL_SECONDS = 1000 | ||
DB_INDEX = 0 | ||
ENABLED = true | ||
host = "testredis" | ||
password = "testpassword" | ||
port = 1234 | ||
charset = "utf8" | ||
default_ttl_seconds = 1000 | ||
db_index = 0 | ||
enabled = true | ||
|
||
[security] | ||
APP_ENCRYPTION_KEY = "atestencryptionkeythatisvalidlen" | ||
CORS_ORIGINS = [ "http://test.com", "https://test.com",] | ||
OAUTH_ROOT_CLIENT_ID = "testrootclientid" | ||
OAUTH_ROOT_CLIENT_SECRET = "testrootclientsecret" | ||
DRP_JWT_SECRET = "testdrpsecret" | ||
LOG_LEVEL = "DEBUG" | ||
app_encryption_key = "atestencryptionkeythatisvalidlen" | ||
cors_origins = [ "http://test.com", "https://test.com",] | ||
oauth_root_client_id = "testrootclientid" | ||
oauth_root_client_secret = "testrootclientsecret" | ||
drp_jwt_secret = "testdrpsecret" | ||
log_level = "DEBUG" | ||
|
||
[execution] | ||
TASK_RETRY_COUNT = 0 | ||
TASK_RETRY_DELAY = 1 | ||
TASK_RETRY_BACKOFF = 1 | ||
REQUIRE_MANUAL_REQUEST_APPROVAL = false | ||
MASKING_STRICT = true | ||
task_retry_count = 0 | ||
task_retry_delay = 1 | ||
task_retry_backoff = 1 | ||
require_manual_request_approval = false | ||
masking_strict = true | ||
|
||
[root_user] | ||
ANALYTICS_OPT_OUT = true | ||
ANALYTICS_ID = "internal" | ||
analytics_opt_out = true | ||
analytics_id = "internal" | ||
|
||
[admin_ui] | ||
ENABLED = true | ||
enabled = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
PORT = 8080 | ||
port = 8080 | ||
|
||
[database] | ||
SERVER = "db" | ||
USER = "postgres" | ||
PASSWORD = "216f4b49bea5da4f84f05288258471852c3e325cd336821097e1e65ff92b528a" | ||
DB = "app" | ||
TEST_DB = "test" | ||
ENABLED = true | ||
server = "db" | ||
user = "postgres" | ||
password = "216f4b49bea5da4f84f05288258471852c3e325cd336821097e1e65ff92b528a" | ||
db = "app" | ||
test_db = "test" | ||
enabled = true | ||
|
||
[redis] | ||
HOST = "redis" | ||
PASSWORD = "testpassword" | ||
PORT = 6379 | ||
CHARSET = "utf8" | ||
DEFAULT_TTL_SECONDS = 604800 | ||
DB_INDEX = 0 | ||
ENABLED = true | ||
SSL = false | ||
SSL_CERT_REQS = "required" | ||
host = "redis" | ||
password = "testpassword" | ||
port = 6379 | ||
charset = "utf8" | ||
default_ttl_seconds = 604800 | ||
db_index = 0 | ||
enabled = true | ||
ssl = false | ||
ssl_cert_reqs = "required" | ||
|
||
[security] | ||
APP_ENCRYPTION_KEY = "OLMkv91j8DHiDAULnK5Lxx3kSCov30b3" | ||
CORS_ORIGINS = [ "http://localhost", "http://localhost:8080", "http://localhost:3000", "http://localhost:3001",] | ||
ENCODING = "UTF-8" | ||
OAUTH_ROOT_CLIENT_ID = "fidesopsadmin" | ||
OAUTH_ROOT_CLIENT_SECRET = "fidesopsadminsecret" | ||
DRP_JWT_SECRET = "secret" | ||
LOG_LEVEL = "INFO" | ||
app_encryption_key = "OLMkv91j8DHiDAULnK5Lxx3kSCov30b3" | ||
cors_origins = [ "http://localhost", "http://localhost:8080", "http://localhost:3000", "http://localhost:3001",] | ||
encoding = "UTF-8" | ||
oauth_root_client_id = "fidesopsadmin" | ||
oauth_root_client_secret = "fidesopsadminsecret" | ||
drp_jwt_secret = "secret" | ||
log_level = "INFO" | ||
|
||
[execution] | ||
MASKING_STRICT = true | ||
REQUIRE_MANUAL_REQUEST_APPROVAL = false | ||
TASK_RETRY_COUNT = 0 | ||
TASK_RETRY_DELAY = 1 | ||
TASK_RETRY_BACKOFF = 1 | ||
WORKER_ENABLED = false | ||
masking_strict = true | ||
require_manual_request_approval = false | ||
task_retry_count = 0 | ||
task_retry_delay = 1 | ||
task_retry_backoff = 1 | ||
worker_enabled = false | ||
|
||
[root_user] | ||
ANALYTICS_OPT_OUT = false | ||
analytics_opt_out = false | ||
|
||
[admin_ui] | ||
ENABLED = true | ||
enabled = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.