-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.tf
58 lines (48 loc) · 1.47 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
variable "cleaner_db_instance_identifier" {
description = "The RDS database instance identifier."
type = string
}
variable "cleaner_dry_run" {
description = "Don't make any changes and log what would have happened."
type = string
}
variable "cleaner_max_db_snapshot_count" {
description = "The maximum number of manual snapshots allowed. This takes precedence over -retention-days."
type = string
default = ""
}
variable "cleaner_retention_days" {
description = "The maximum retention age in days."
type = string
}
variable "cloudwatch_logs_retention_days" {
default = 90
description = "Number of days to keep logs in AWS CloudWatch."
type = string
}
variable "environment" {
description = "Environment tag, e.g prod."
}
variable "interval_minutes" {
default = 5
description = "How often to run the Lambda function in minutes."
type = string
}
variable "kms_key_arn" {
description = "ARN of the KMS key used for encrypting environment variables."
type = string
default = ""
}
variable "cloudwatch_kms_key_arn" {
description = "ARN of the Cloudwatch KMS key used for encrypting Cloudwatch log groups."
type = string
default = ""
}
variable "s3_bucket" {
description = "The name of the S3 bucket used to store the Lambda builds."
type = string
}
variable "version_to_deploy" {
description = "The version the Lambda function to deploy."
type = string
}