AWS - Lambda
Given this Python Lambda function:
What will the function return if the environment variable
import os
def lambda_handler(event, context):
return os.environ.get('ENV', 'production')What will the function return if the environment variable
ENV is not defined?