@@ -58,14 +58,18 @@ config:
5858 telemetry : 0
5959 # configure services to deploy to AWS lambda
6060 lambda : # Available since v0.26.0
61- # set 128MB of RAM
61+ # set the memory in MB
6262 # See lambda configuration docs here:
6363 # https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
6464 memory : 128
65- # set a timeout of 15 seconds
65+ # set a timeout in seconds
6666 # See lambda timeout values here:
6767 # https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-timeout-console
6868 timeout : 15
69+ # set the amount of ephemeral-storage in MB
70+ # For info on ephemeral-storage for AWS Lambda see:
71+ # https://docs.aws.amazon.com/lambda/latest/dg/configuration-ephemeral-storage.html
72+ ephemeral-storage : 512
6973 # set a provisioned concurrency value
7074 # For info on provisioned concurrency for AWS Lambda see:
7175 # https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html
@@ -134,17 +138,18 @@ config:
134138 telemetry : 0
135139 # configure services to deploy to AWS lambda
136140 lambda : # Available since v0.26.0
137- # set 128MB of RAM
141+ # set the memory in MB
138142 # See lambda configuration docs here:
139143 # https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
140144 memory : 128
141- # set a timeout of 15 seconds
145+ # set a timeout in seconds
142146 # See lambda timeout values here:
143147 # https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-timeout-console
144148 timeout : 15
145- # set a provisioned concurrency value
146- # For info on provisioned concurrency for AWS Lambda see:
147- # https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html
149+ # set the amount of ephemeral-storage in MB
150+ # For info on ephemeral-storage for AWS Lambda see:
151+ # https://docs.aws.amazon.com/lambda/latest/dg/configuration-ephemeral-storage.html
152+ ephemeral-storage : 512
148153 # Additional deployment types
149154 # You can target these types by setting a `type` in your project configuration
150155 big-service :
0 commit comments