Untitled

 avatar
unknown
yaml
2 years ago
480 B
4
Indexable
# Read the documentation at https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml/
service: symfony

provider:
    name: aws
    # The AWS region in which to deploy (us-east-1 is the default)
    region: eu-west-3
    # The stage of the application, e.g. dev, production, staging… ('dev' is the default)
    stage: ${opt:stage, 'dev'}
    runtime: provided.al2
    environment:
        # Symfony environment variables
        APP_ENV: ${opt:stage, 'dev'}
Editor is loading...