-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvariables.tf
80 lines (63 loc) · 2 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
variable "app_version" {
description = "(Optional) Version of S3 function to use. Add this if you want to add a version number to the path of the application in S3 e.g. 0.0.1"
default = ""
}
variable "function_name" {
description = "Name of lambda function in AWS"
}
variable "lambda_handler_name" {
description = "Name of the handler in lambda function e.g. main.handler"
}
variable "runtime" {
description = "Lambda Runtime your function uses e.g. nodejs8.10"
}
variable "s3_key" {
description = "Directory of the zip file inside the S3 bucket e.g. SomePath/$${var.app_version}/function.zip"
}
variable "s3_bucket" {
description = "S3 Bucket Name"
}
variable "iam_role_name" {
description = "IAM Role Name that has policies attached to execute lambda functions"
}
variable "api_key_name" {
description = "Name of API Key attached to API Gateway"
}
variable "api_name" {
description = "Name of the API to be added"
}
variable "vpc_id" {
description = "VPC that your function will run in. Used when your function requires an internal IP for accessing internal services"
}
variable "subnet_id" {
description = "List of subnets to run your function in"
type = list(string)
}
variable "security_group" {
description = "List of security group to add to your function"
type = list(string)
}
variable "environment" {
description = "Environment variables passed into function when executing"
type = map(string)
}
variable "lambda_timeout" {
description = "Timeout afterwhich to kill the function"
default = "10"
}
variable "quota_limit" {
description = "Maximum number of api calls for the usage plan"
default = 100
}
variable "quota_period" {
description = "Period in which the limit is accumulated, eg DAY, WEEK, MONTH"
default = "DAY"
}
variable "throttle_burst_limit" {
description = "Burst token bucket"
default = 5
}
variable "throttle_rate_limit" {
description = "Rate at which burst tokens are added to bucket"
default = 10
}