-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
86 lines (70 loc) · 1.67 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
variable "group_subnets" {
type = list(string)
default = []
}
variable "cluster_security_group" {
type = list(string)
}
variable "master_password" {
type = string
}
variable "master_username" {
type = string
}
variable "cluster_instance_class" {
type = string
default = "db.r5.large"
}
variable "cluster_instance_count" {
type = number
default = 1
}
variable "name" {
type = string
}
variable "backup_retention_period" {
default = 7
type = number
}
variable "preferred_backup_window" {
default = "07:00-09:00"
type = string
}
variable "skip_final_snapshot" {
default = false
type = bool
}
variable "storage_encrypted" {
default = true
type = bool
}
variable "parameters" {
description = "additional parameters modified in parameter group"
type = list(map(any))
default = []
}
variable "apply_immediately" {
default = false
description = "Specifies whether any cluster modifications are applied immediately, or during the next maintenance window."
type = bool
}
variable "ca_cert_identifier" {
default = "rds-ca-2019"
description = "Optional, identifier of the CA certificate to use for DB instance"
type = string
}
variable "family" {
default = "docdb3.6"
description = "Version of docdb family being created"
type = string
}
variable "engine" {
default = "docdb"
description = "The name of the database engine to be used for this DB cluster. Only `docdb` is supported."
type = string
}
variable "engine_version" {
default = "3.6.0"
description = "The database engine version. Updating this argument results in an outage."
type = string
}