Skip to content

Commit f4e274b

Browse files
committed
Merge pull request hashicorp#4449 from stack72/f-aws-docs-lambda-limits
provider/aws: lambda function runtime documentation link
2 parents 2920a4a + 59bfa63 commit f4e274b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

website/source/docs/providers/aws/r/lambda_function.html.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ resource "aws_lambda_function" "test_lambda" {
5353
* `role` - (Required) IAM role attached to the Lambda Function. This governs both who / what can invoke your Lambda Function, as well as what resources our Lambda Function has access to. See [Lambda Permission Model][4] for more details.
5454
* `description` - (Optional) Description of what your Lambda Function does.
5555
* `memory_size` - (Optional) Amount of memory in MB your Lambda Function can use at runtime. Defaults to `128`. See [Limits][5]
56-
* `runtime` - (Optional) Defaults to `nodejs`.
56+
* `runtime` - (Optional) Defaults to `nodejs`. See [Runtimes][6] for valid values.
5757
* `timeout` - (Optional) The amount of time your Lambda Function has to run in seconds. Defaults to `3`. See [Limits][5]
5858

5959
## Attributes Reference
@@ -67,3 +67,4 @@ resource "aws_lambda_function" "test_lambda" {
6767
[3]: http://docs.aws.amazon.com/lambda/latest/dg/walkthrough-custom-events-create-test-function.html
6868
[4]: http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html
6969
[5]: http://docs.aws.amazon.com/lambda/latest/dg/limits.html
70+
[6]: https://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunction.html#API_CreateFunction_RequestBody

0 commit comments

Comments
 (0)