github.com/recobe182/terraform@v0.8.5-0.20170117231232-49ab22a935b7/website/source/docs/providers/aws/r/lambda_function.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: aws_lambda_function"
     4  sidebar_current: "docs-aws-resource-lambda-function"
     5  description: |-
     6    Provides a Lambda Function resource. Lambda allows you to trigger execution of code in response to events in AWS. The Lambda Function itself includes source code and runtime configuration.
     7  ---
     8  
     9  # aws\_lambda\_function
    10  
    11  Provides a Lambda Function resource. Lambda allows you to trigger execution of code in response to events in AWS. The Lambda Function itself includes source code and runtime configuration.
    12  
    13  For information about Lambda and how to use it, see [What is AWS Lambda?][1]
    14  
    15  ## Example Usage
    16  
    17  ```
    18  resource "aws_iam_role" "iam_for_lambda" {
    19      name = "iam_for_lambda"
    20      assume_role_policy = <<EOF
    21  {
    22    "Version": "2012-10-17",
    23    "Statement": [
    24      {
    25        "Action": "sts:AssumeRole",
    26        "Principal": {
    27          "Service": "lambda.amazonaws.com"
    28        },
    29        "Effect": "Allow",
    30        "Sid": ""
    31      }
    32    ]
    33  }
    34  EOF
    35  }
    36  
    37  resource "aws_lambda_function" "test_lambda" {
    38      filename = "lambda_function_payload.zip"
    39      function_name = "lambda_function_name"
    40      role = "${aws_iam_role.iam_for_lambda.arn}"
    41      handler = "exports.test"
    42      source_code_hash = "${base64sha256(file("lambda_function_payload.zip"))}"
    43      environment {
    44          variables = {
    45              foo = "bar"
    46          }
    47      }
    48  }
    49  ```
    50  
    51  ## Argument Reference
    52  
    53  * `filename` - (Optional) A [zip file][2] containing your lambda function source code. If defined, The `s3_*` options cannot be used.
    54  * `s3_bucket` - (Optional) The S3 bucket location containing your lambda function source code. Conflicts with `filename`.
    55  * `s3_key` - (Optional) The S3 key containing your lambda function source code. Conflicts with `filename`.
    56  * `s3_object_version` - (Optional) The object version of your lambda function source code. Conflicts with `filename`.
    57  * `function_name` - (Required) A unique name for your Lambda Function.
    58  * `handler` - (Required) The function [entrypoint][3] in your code.
    59  * `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.
    60  * `description` - (Optional) Description of what your Lambda Function does.
    61  * `memory_size` - (Optional) Amount of memory in MB your Lambda Function can use at runtime. Defaults to `128`. See [Limits][5]
    62  * `runtime` - (Required) See [Runtimes][6] for valid values.
    63  * `timeout` - (Optional) The amount of time your Lambda Function has to run in seconds. Defaults to `3`. See [Limits][5]
    64  * `publish` - (Optional) Whether to publish creation/change as new Lambda Function Version. Defaults to `false`.
    65  * `vpc_config` - (Optional) Provide this to allow your function to access your VPC. Fields documented below. See [Lambda in VPC][7]
    66  * `environment` - (Optional) The Lambda environment's configuration settings. Fields documented below.
    67  * `kms_key_arn` - (Optional) The ARN for the KMS encryption key.
    68  * `source_code_hash` - (Optional) Used to trigger updates. This is only useful in conjunction with `filename`.
    69    The only useful value is `${base64sha256(file("file.zip"))}`.
    70  
    71  **vpc\_config** requires the following:
    72  
    73  * `subnet_ids` - (Required) A list of subnet IDs associated with the Lambda function.
    74  * `security_group_ids` - (Required) A list of security group IDs associated with the Lambda function.
    75  
    76  ~> **NOTE:** if both `subnet_ids` and `security_group_ids` are empty then vpc_config is considered to be empty or unset.
    77  
    78  For **environment** the following attributes are supported:
    79  
    80  * `variables` - (Optional) A map that defines environment variables for the Lambda function.
    81  
    82  ## Attributes Reference
    83  
    84  * `arn` - The Amazon Resource Name (ARN) identifying your Lambda Function.
    85  * `qualified_arn` - The Amazon Resource Name (ARN) identifying your Lambda Function Version
    86    (if versioning is enabled via `publish = true`).
    87  * `version` - Latest published version of your Lambda Function.
    88  * `last_modified` - The date this resource was last modified.
    89  * `kms_key_arn` - (Optional) The ARN for the KMS encryption key.
    90  * `source_code_hash` - Base64-encoded representation of raw SHA-256 sum of the zip file
    91    provided either via `filename` or `s3_*` parameters.
    92  
    93  [1]: https://docs.aws.amazon.com/lambda/latest/dg/welcome.html
    94  [2]: https://docs.aws.amazon.com/lambda/latest/dg/walkthrough-s3-events-adminuser-create-test-function-create-function.html
    95  [3]: https://docs.aws.amazon.com/lambda/latest/dg/walkthrough-custom-events-create-test-function.html
    96  [4]: https://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html
    97  [5]: https://docs.aws.amazon.com/lambda/latest/dg/limits.html
    98  [6]: https://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunction.html#SSS-CreateFunction-request-Runtime
    99  [7]: http://docs.aws.amazon.com/lambda/latest/dg/vpc.html
   100  
   101  ## Import
   102  
   103  Lambda Functions can be imported using the `function_name`, e.g. 
   104  
   105  ```
   106  $ terraform import aws_lambda_function.tesr_lambda my_test_lambda_function
   107  ```