-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
38 lines (31 loc) · 766 Bytes
/
variables.tf
File metadata and controls
38 lines (31 loc) · 766 Bytes
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
variable "api_name" {
type = string
description = "The name of the api."
}
variable "api_iam_role_arn" {
type = string
description = "The IAM role arn for the lambda."
}
variable "package_key" {
type = string
description = "The key to store the API package for retrieval by lambda."
}
variable "packages_bucket" {
type = string
description = "The bucket to store the packages in."
}
variable "timeout" {
type = number
description = "The timeout for the lambda."
default = 30
}
variable "environment_variables" {
type = map(string)
description = "The environment variables for the lambda function."
default = {}
}
variable "runtime" {
type = string
description = "The runtime for the lambda funciton."
default = "python3.8"
}