src/Saas.Admin/deployment/script/map-to-config-entries-parameters.py [26:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return {
            keyName: {
                'value': value
            }
        }

def get_deploy_b2c_value(
    config: dict,
    key: str,
    keyName: str) -> 'dict[str, dict[str, str]]':

    value = config['deployment']['azureb2c'][key]
    return {
            keyName: {
                'value': value
            }
        }

def get_app_value(
    config: dict, 
    app_name: str, 
    key: str,
    keyName: str) -> 'dict[str, dict[str, str]]':
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/Saas.Application/deployment/script/map-to-config-entries-parameters.py [14:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return {
            keyName: {
                'value': value
            }
        }

def get_deploy_b2c_value(
    config: dict,
    key: str,
    keyName: str) -> 'dict[str, dict[str, str]]':

    value = config['deployment']['azureb2c'][key]
    return {
            keyName: {
                'value': value
            }
        }

def get_app_value(
    config: dict, 
    app_name: str, 
    key: str,
    keyName: str) -> 'dict[str, dict[str, str]]':
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



