Merge pull request #12153 from joscha/patch-1

docs: remove ambiguousity regarding s3_key
This commit is contained in:
Jake Champlin 2017-02-22 14:37:00 -05:00 committed by GitHub
commit ad2860cabe
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ resource "aws_lambda_function" "test_lambda" {
* `filename` - (Optional) A [zip file][2] containing your lambda function source code. If defined, The `s3_*` options cannot be used.
* `s3_bucket` - (Optional) The S3 bucket location containing your lambda function source code. Conflicts with `filename`.
* `s3_key` - (Optional) The S3 key containing your lambda function source code. Conflicts with `filename`.
* `s3_key` - (Optional) The S3 key of a [zip file][2] containing your lambda function source code. Conflicts with `filename`.
* `s3_object_version` - (Optional) The object version of your lambda function source code. Conflicts with `filename`.
* `function_name` - (Required) A unique name for your Lambda Function.
* `handler` - (Required) The function [entrypoint][3] in your code.