-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
executable file
·52 lines (40 loc) · 971 Bytes
/
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
variable "region" {
description = "us-east-1"
}
variable "environment" {
description = "The Deployment environment"
}
variable "vpc_cidr" {
description = "The CIDR block of the vpc"
}
variable "private_subnets_cidr" {
type = list
description = "The CIDR block for the private subnet"
}
variable "s3_bucket" {
description = "s3 bucket name"
}
variable "raw_data_path" {
description = "Folder name of row data"
}
variable "allocated_storage" {
description = "Size of replication instance in GB"
}
variable "apply_immediately" {
description = "apply immediately"
}
variable "auto_minor_version_upgrade" {
description = "auto minor version upgrade"
}
variable "engine_version" {
description = "engine version"
}
variable "publicly_accessible" {
description = "publicly accessible"
}
variable "replication_instance_class" {
description = "replication instance class"
}
variable "migration_type" {
description = "migration type"
}