-
Notifications
You must be signed in to change notification settings - Fork 1
/
rds.postgres-variables.tf
105 lines (77 loc) · 2.45 KB
/
rds.postgres-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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
### ###################### ###
### in_publicly_accessible ###
### ###################### ###
variable in_publicly_accessible {
description = "Make the RDS database publicly accessible inside a public subnet and appropriate security group."
default = false
type = bool
}
### #################### ###
### in_security_group_id ###
### #################### ###
variable in_security_group_id {
description = "The mandatory ID of the security group protecting the database."
type = string
}
### ################ ###
### in_db_subnet_ids ###
### ################ ###
variable in_db_subnet_ids {
type = list
description = "The usually two (2) or three (3) subnet ids in which the multi-availability zone db resides."
}
### ################ ###
### in_database_name ###
### ################ ###
variable in_database_name {
description = "Alphanumeric only database name starting with a letter and a max length of 32."
type = string
}
### ################# ###
### in_clone_snapshot ###
### ################# ###
variable in_clone_snapshot {
description = "The newly Created database will be a clone from a snapshot if set to true."
default = false
type = bool
}
### #################### ###
### in_id_of_db_to_clone ###
### #################### ###
variable in_id_of_db_to_clone {
description = "The ID of mummy database whose snapshot the database will be cloned from."
default = ""
type = string
}
### ################ ###
### in_mandated_tags ###
### ################ ###
variable in_mandated_tags {
description = "Optional tags unless your organization mandates that a set of given tags must be set."
type = map
default = { }
}
### ############ ###
### in_ecosystem ###
### ############ ###
variable in_ecosystem {
description = "Creational stamp binding all infrastructure components created on behalf of this ecosystem instance."
default = "app-db"
type = string
}
### ############ ###
### in_timestamp ###
### ############ ###
variable in_timestamp {
description = "A timestamp for resource tags in the format ymmdd-hhmm like 80911-1435"
default = "TIMESTAMP"
type = string
}
### ############## ###
### in_description ###
### ############## ###
variable in_description {
description = "Ubiquitous note detailing who, when, where and why for every infrastructure component."
default = "within the AWS cloud at this point in time."
type = string
}