forked from cloudposse/terraform-aws-lambda-function
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (28 loc) · 824 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
variable "region" {
type = string
description = "AWS Region"
}
variable "function_name" {
type = string
description = "Unique name for the Lambda Function."
}
variable "handler" {
type = string
description = "The function entrypoint in your code."
default = ""
}
variable "runtime" {
type = string
description = "The runtime environment for the Lambda function you are uploading."
default = ""
}
variable "iam_policy_description" {
type = string
description = "Description of the IAM policy for the Lambda IAM role"
default = "Minimum SSM read permissions for Lambda"
}
variable "ephemeral_storage_size" {
type = number
description = "The amount of storage available to the function at runtime. Defaults to 512."
default = 512
}