-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (36 loc) · 1.18 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
variable "enabled" {
description = "Set to true to enable the module"
default = "true"
}
variable "namespace" {
description = "Namespace for the resources. ex: production1"
}
variable "stage" {
description = "Stage of the replica (prod/staging/dev)"
}
variable "source_db_identifier" {
description = "Identifier of another Amazon RDS Database to replicate"
}
variable "instance_class" {
description = "The instance type of the RDS instance"
}
variable "storage_type" {
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
default = "io1"
}
variable "storage_iops" {
description = "The amount of provisioned IOPS"
default = 1000
}
variable "monitoring_interval" {
description = "The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60"
default = "0"
}
variable "cidr" {
description = "CIDR Block for the VPC"
default = "10.22.0.0/16"
}
variable "tags" {
description = "Tags to assign to the resources"
default = {}
}