-
Notifications
You must be signed in to change notification settings - Fork 1
/
var-rds.tf
44 lines (36 loc) · 957 Bytes
/
var-rds.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
variable "rds-identifier" {
description = "Identifier for RDS instance"
default = "mage2-mysql"
}
variable "rds-instance-class" {
description = "Instance class for RDS"
default = "db.t2.micro"
}
variable "rds-allocated-storage" {
description = "Storage size for RDS"
default = 10
}
variable "rds-storage-type" {
description = "Storage backend for RDS"
default = "gp2" # Designator for 'SSD' storage
}
variable "rds-multi-az" {
description = "Multi-AZ designator for RDS"
default = false
}
variable "rds-port" {
description = "Connection port for RDS"
default = 3306
}
variable "rds-db-name" {
description = "RDS datbase name"
default = "magedb"
}
variable "rds-db-user" {
description = "RDS database user"
default = "dbuser"
}
variable "rds-db-password" {
description = "RDS database password"
default = "dbpassword" # NOTE: Ideal candidate for LastPass external data source
}