Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions docs/providers/pulumi/aws/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,18 @@ config:
telemetry: 0
# configure services to deploy to AWS lambda
lambda: # Available since v0.26.0
# set 128MB of RAM
# set the memory in MB
# See lambda configuration docs here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
memory: 128
# set a timeout of 15 seconds
# set a timeout in seconds
# See lambda timeout values here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-timeout-console
timeout: 15
# set the amount of ephemeral-storage in MB
# For info on ephemeral-storage for AWS Lambda see:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-ephemeral-storage.html
ephemeral-storage: 512
# set a provisioned concurrency value
# For info on provisioned concurrency for AWS Lambda see:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html
Expand Down Expand Up @@ -134,17 +138,18 @@ config:
telemetry: 0
# configure services to deploy to AWS lambda
lambda: # Available since v0.26.0
# set 128MB of RAM
# set the memory in MB
# See lambda configuration docs here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
memory: 128
# set a timeout of 15 seconds
# set a timeout in seconds
# See lambda timeout values here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-timeout-console
timeout: 15
# set a provisioned concurrency value
# For info on provisioned concurrency for AWS Lambda see:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html
# set the amount of ephemeral-storage in MB
# For info on ephemeral-storage for AWS Lambda see:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-ephemeral-storage.html
ephemeral-storage: 512
# Additional deployment types
# You can target these types by setting a `type` in your project configuration
big-service:
Expand Down
4 changes: 2 additions & 2 deletions docs/providers/pulumi/aws/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ config:
telemetry: 0
# configure services to deploy to AWS lambda
lambda: # Available since v0.26.0
# set 128MB of RAM
# set the memory in MB
# See lambda configuration docs here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
memory: 128
# set a timeout of 15 seconds
# set a timeout in seconds
# See lambda timeout values here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-timeout-console
timeout: 15
Expand Down
11 changes: 6 additions & 5 deletions docs/providers/terraform/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,18 @@ config:
telemetry: 0
# configure services to deploy to AWS lambda
lambda: # Available since v0.26.0
# set 128MB of RAM
# set the memory in MB
# See lambda configuration docs here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
memory: 128
# set a timeout of 15 seconds
# set a timeout in seconds
# See lambda timeout values here:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-timeout-console
timeout: 15
# set a provisioned concurrency value
# For info on provisioned concurrency for AWS Lambda see:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html
# set the amount of ephemeral-storage in MB
# For info on ephemeral-storage for AWS Lambda see:
# https://docs.aws.amazon.com/lambda/latest/dg/configuration-ephemeral-storage.html
ephemeral-storage: 512
# Additional deployment types
# You can target these types by setting a `type` in your project configuration
big-service:
Expand Down
Loading