-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvariables.tf
More file actions
39 lines (32 loc) · 980 Bytes
/
variables.tf
File metadata and controls
39 lines (32 loc) · 980 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
39
variable "max_retries" {
default = "100"
description = "Max retries for AWS requests."
}
variable "aws_region" {
default = "us-west-2"
description = "AWS region to deploy the lambda function to."
}
variable "lamba_schedue" {
default = "60 minutes"
description = "Schedule interval for the lambda function."
}
variable "lambda_source_dir" {
default = "../lambda"
description = "Lambda source files"
}
variable "lambda_prepared_source_dir" {
default = "../lambda"
description = "Working directory to build the lambda source files"
}
variable "lambda_archive_path" {
default = "../dist/aws_maintenance_lambda.zip"
description = "Path to the final lambda zip artifact"
}
variable "config_json" {
default = "../lambda/config.json"
description = "Path to the configuration file used by the lambda"
}
variable "force_lambda_update" {
default = ""
description = "Variable to trigger forced update of lambda source"
}