in lib/configuration.py [0:0]
def get_all_configurations() -> dict:
"""
Returns a dict mapping of configurations for all environments.
These keys correspond to static values, CloudFormation outputs, and Secrets Manager (passwords only) records.
@return: dict:
"""
return {
DEPLOYMENT: {
ENVIRONMENT: DEPLOYMENT,
GITHUB_TOKEN: '/DataLake/GitHubToken',
**get_local_configuration(DEPLOYMENT),
},
DEV: get_environment_configuration(DEV),
TEST: get_environment_configuration(TEST),
PROD: get_environment_configuration(PROD),
}