AWS - Lambda
Given this Python Lambda function code:
If the environment variable
import os
def lambda_handler(event, context):
return os.environ.get('MODE', 'default')If the environment variable
MODE is set to production, what will the function return?