Remove CLASSIFIED param
This commit is contained in:
parent
a33468b6c7
commit
2f8135ecd1
@ -3,7 +3,7 @@
|
|||||||
"files": "^.secrets.baseline$|^.*pgsslrootcert.yml$",
|
"files": "^.secrets.baseline$|^.*pgsslrootcert.yml$",
|
||||||
"lines": null
|
"lines": null
|
||||||
},
|
},
|
||||||
"generated_at": "2019-11-25T21:28:07Z",
|
"generated_at": "2019-11-26T21:30:17Z",
|
||||||
"plugins_used": [
|
"plugins_used": [
|
||||||
{
|
{
|
||||||
"base64_limit": 4.5,
|
"base64_limit": 4.5,
|
||||||
@ -46,7 +46,7 @@
|
|||||||
"hashed_secret": "81b127e2222d9bfc4609053faec85300f7525463",
|
"hashed_secret": "81b127e2222d9bfc4609053faec85300f7525463",
|
||||||
"is_secret": false,
|
"is_secret": false,
|
||||||
"is_verified": false,
|
"is_verified": false,
|
||||||
"line_number": 294,
|
"line_number": 293,
|
||||||
"type": "Secret Keyword"
|
"type": "Secret Keyword"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -98,7 +98,7 @@
|
|||||||
"hashed_secret": "afc848c316af1a89d49826c5ae9d00ed769415f3",
|
"hashed_secret": "afc848c316af1a89d49826c5ae9d00ed769415f3",
|
||||||
"is_secret": false,
|
"is_secret": false,
|
||||||
"is_verified": false,
|
"is_verified": false,
|
||||||
"line_number": 21,
|
"line_number": 23,
|
||||||
"type": "Secret Keyword"
|
"type": "Secret Keyword"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -228,7 +228,6 @@ To generate coverage reports for the Javascript tests:
|
|||||||
- `CA_CHAIN`: Path to the CA chain file.
|
- `CA_CHAIN`: Path to the CA chain file.
|
||||||
- `CDN_ORIGIN`: URL for the origin host for asset files.
|
- `CDN_ORIGIN`: URL for the origin host for asset files.
|
||||||
- `CELERY_DEFAULT_QUEUE`: String specifying the name of the queue that background tasks will be added to.
|
- `CELERY_DEFAULT_QUEUE`: String specifying the name of the queue that background tasks will be added to.
|
||||||
- `CLASSIFIED`: Boolean specifying if we're running in a classified environment.
|
|
||||||
- `CONTRACT_END_DATE`: String specifying the end date of the JEDI contract. Used for task order validation. Example: 2019-09-14
|
- `CONTRACT_END_DATE`: String specifying the end date of the JEDI contract. Used for task order validation. Example: 2019-09-14
|
||||||
- `CONTRACT_START_DATE`: String specifying the start date of the JEDI contract. Used for task order validation. Example: 2019-09-14.
|
- `CONTRACT_START_DATE`: String specifying the start date of the JEDI contract. Used for task order validation. Example: 2019-09-14.
|
||||||
- `CRL_FAIL_OPEN`: Boolean specifying if expired CRLs should fail open, rather than closed.
|
- `CRL_FAIL_OPEN`: Boolean specifying if expired CRLs should fail open, rather than closed.
|
||||||
|
@ -160,7 +160,6 @@ def map_config(config):
|
|||||||
"BROKER_URL": config["default"]["REDIS_URI"],
|
"BROKER_URL": config["default"]["REDIS_URI"],
|
||||||
"DEBUG": config["default"].getboolean("DEBUG"),
|
"DEBUG": config["default"].getboolean("DEBUG"),
|
||||||
"SQLALCHEMY_ECHO": config["default"].getboolean("SQLALCHEMY_ECHO"),
|
"SQLALCHEMY_ECHO": config["default"].getboolean("SQLALCHEMY_ECHO"),
|
||||||
"CLASSIFIED": config["default"].getboolean("CLASSIFIED"),
|
|
||||||
"PORT": int(config["default"]["PORT"]),
|
"PORT": int(config["default"]["PORT"]),
|
||||||
"SQLALCHEMY_DATABASE_URI": config["default"]["DATABASE_URI"],
|
"SQLALCHEMY_DATABASE_URI": config["default"]["DATABASE_URI"],
|
||||||
"SQLALCHEMY_TRACK_MODIFICATIONS": False,
|
"SQLALCHEMY_TRACK_MODIFICATIONS": False,
|
||||||
|
@ -5,7 +5,6 @@ CAC_URL = http://localhost:8000/login-redirect
|
|||||||
CA_CHAIN = ssl/server-certs/ca-chain.pem
|
CA_CHAIN = ssl/server-certs/ca-chain.pem
|
||||||
CDN_ORIGIN=http://localhost:8000
|
CDN_ORIGIN=http://localhost:8000
|
||||||
CELERY_DEFAULT_QUEUE=celery
|
CELERY_DEFAULT_QUEUE=celery
|
||||||
CLASSIFIED = false
|
|
||||||
CONTRACT_END_DATE = 2022-09-14
|
CONTRACT_END_DATE = 2022-09-14
|
||||||
CONTRACT_START_DATE = 2019-09-14
|
CONTRACT_START_DATE = 2019-09-14
|
||||||
CRL_FAIL_OPEN = false
|
CRL_FAIL_OPEN = false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user