From e7144c1faf9675c9b992b372626c44e93d131d9a Mon Sep 17 00:00:00 2001 From: Rak Siva Date: Tue, 22 Oct 2024 15:40:34 -0600 Subject: [PATCH] expose aws-cfg-ephemeral for pulumi provider add config to aws tf docs Apply suggestions from code review Co-authored-by: Jye Cusch --- docs/providers/pulumi/aws/configuration.mdx | 19 ++++++++++++------- docs/providers/pulumi/aws/index.mdx | 4 ++-- docs/providers/terraform/aws.mdx | 11 ++++++----- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/docs/providers/pulumi/aws/configuration.mdx b/docs/providers/pulumi/aws/configuration.mdx index 575195fd9..4e457a753 100644 --- a/docs/providers/pulumi/aws/configuration.mdx +++ b/docs/providers/pulumi/aws/configuration.mdx @@ -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 @@ -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: diff --git a/docs/providers/pulumi/aws/index.mdx b/docs/providers/pulumi/aws/index.mdx index e47233e32..5789834b2 100644 --- a/docs/providers/pulumi/aws/index.mdx +++ b/docs/providers/pulumi/aws/index.mdx @@ -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 diff --git a/docs/providers/terraform/aws.mdx b/docs/providers/terraform/aws.mdx index 969d5dfde..96c068b74 100644 --- a/docs/providers/terraform/aws.mdx +++ b/docs/providers/terraform/aws.mdx @@ -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: