-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: expose aws-cfg-ephemeral for pulumi and terraform provider (#800)
Co-authored-by: Tim Holm <[email protected]>
- Loading branch information
Showing
2 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,14 +38,19 @@ region: | |
# telemetry: 0 | ||
# # configure functions 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 | ||
# # Available Since nitric/[email protected] | ||
# 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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,17 +28,19 @@ region: | |
# telemetry: 0 | ||
# # configure functions 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 | ||
# # Available Since nitric/[email protected] | ||
# ephemeral-storage: 512 | ||
# # Additional deployment types | ||
# # You can target these types by setting a `type` in your project configuration | ||
# big-service: | ||
|