Add owasp baseline scan with Scanning environment

This commit is contained in:
Ryan Ahearn
2022-08-26 17:07:42 -04:00
parent a2913f8b9c
commit 3341c08245
3 changed files with 149 additions and 0 deletions

View File

@@ -156,6 +156,14 @@ class Test(Development):
ASSET_PATH = 'https://static.example.com/'
class Scanning(Test):
BASIC_AUTH_FORCE = False
API_HOST_NAME = 'https://notifications-api.app.cloud.gov/'
NOTIFY_ENVIRONMENT = 'scanning'
ASSET_DOMAIN = ''
ASSET_PATH = '/static/'
class Preview(Config):
BASIC_AUTH_FORCE = True
HTTP_PROTOCOL = 'https'
@@ -242,6 +250,7 @@ class Sandbox(CloudFoundryConfig):
configs = {
'development': Development,
'test': Test,
'scanning': Scanning,
'preview': Preview,
'staging': Staging,
'live': Live,