-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
34 lines (28 loc) · 819 Bytes
/
vars.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
variable "aws_region" {
description = "The AWS region to deploy to (e.g. us-east-1)"
type = string
}
variable "name" {
description = "The name of the DB"
type = string
}
variable "instance_class" {
description = "The instance class of the DB (e.g. db.t2.micro)"
type = string
}
variable "allocated_storage" {
description = "The amount of space, in GB, to allocate for the DB"
type = number
}
variable "storage_type" {
description = "The type of storage to use for the DB. Must be one of: standard, gp2, or io1."
type = string
}
variable "master_username" {
description = "The username for the master user of the DB"
type = string
}
variable "master_password" {
description = "The password for the master user of the DB"
type = string
}