"""Config file for lambda function.""" from os import getenv APPLICATION_NAME = "lambda-business-solutions-automations-send-email" # AWS region configuration AWS_REGION = getenv("AWS_REGION", "us-east-1") # Define the source address of emails sent EMAIL_FROM = getenv("EMAIL_FROM") # Define Source ARN, required by AWS SES. See # https://boto3.amazonaws.com/v1/documentation/api/1.35.8/reference/services/ses # /client/send_raw_email.html AWS_SES_SOURCE_ARN = getenv( "SES_SOURCE_ARN", "arn:aws:ses:us-east-1:437795906767:identity/theorchard.com" ) # Define an existing AWS S3 bucket where temporary objects # can be created and deleted during integration tests. # E.g. "test-bucket" # Note that there's no 100% guarantee that such objects will # be successfully cleaned up after testing. TEST_S3_BUCKET = getenv("TEST_S3_BUCKET", "qa-youtube-audit")