-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvariables.tf
More file actions
30 lines (24 loc) · 981 Bytes
/
variables.tf
File metadata and controls
30 lines (24 loc) · 981 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
variable "lambda_inputs" {
default = {}
type = map(string)
description = "Map of inputs which are passed into the Lambda function via the event['ResourceProperties'] object."
}
variable "lambda_outputs" {
type = list(string)
description = "List of outputs from the Lambda function. The Lambda must ALWAYS return these outputs, and they can only be of type String. Maps/Objects will result in a CloudFormation error."
}
variable "tags" {
default = {}
type = map(string)
description = "Any tags to add to the CloudFormation stack."
}
variable "name" {
description = "Unique name for the result of executing the lambda."
}
variable "lambda_function_arn" {
description = "Lambda ARN - identify the lambda to execute."
}
variable "timeout_in_minutes" {
default = "5"
description = "Maximum Time to wait for a response from CloudFormation/Lambda. The Lambda itself may have its own timeout; this does not override it."
}