-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
51 lines (51 loc) · 1.32 KB
/
variables.tf
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
#Define AWS Region
variable "region" {
description = "Infrastructure region"
type = string
default = "us-east-2"
}
variable "name" {
description = "The name of the application."
type = string
default = "app-7"
}
variable "log_group_prefix" {
description = "The name of the log group."
type = string
default = "/aws/lambda/"
}
variable "vpc_cidr" {
description = "The CIDR of the VPC."
type = string
default = "12.25.15.0/25"
}
variable "subnet_cidr_private" {
description = "The CIDR blocks for the private subnets."
type = list(any)
default = ["12.25.15.0/26", "12.25.15.64/26"]
}
variable "retention_in_days" {
description = "CloudWatch log group retention in days"
type = number
default = 365
}
variable "deletion_window_in_days" {
description = "KMS key deletion window in days"
type = number
default = 7
}
variable "kms_data_key_reuse_period_seconds" {
description = "KMS data key reuse period in seconds"
type = number
default = 300
}
variable "days_after_initiation" {
description = "Days after initiation to abort multipart uploads"
type = number
default = 3
}
variable "noncurrent_days" {
description = "Days to keep noncurrent object versions"
type = number
default = 90
}