-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
89 lines (73 loc) · 1.15 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
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
variable "VPC_CIDR" {
type = string
default = "10.0.0.0/16"
}
variable "VPC_NAME" {
type = string
}
variable "IGW_NAME" {
type = string
}
variable "PUBLIC_SUBNET_1_CIDR" {
type = string
}
variable "PUBLIC_SUBNET_2_CIDR" {
type = string
}
variable "PRIVATE_SUBNET_1_CIDR" {
type = string
}
variable "PRIVATE_SUBNET_2_CIDR" {
type = string
}
variable "AZ_1" {
type = string
}
variable "AZ_2" {
type = string
}
variable "REGION" {
type = string
}
variable "AMI_ID" {
type = string
}
variable "INSTANCE_TYPE" {
type = string
}
variable "EC2_COUNT" {
type = number
description = ""
}
variable "DB_NAME" {
type = string
description = ""
}
variable "DB_ENGINE" {
type = string
description = ""
}
variable "DB_INSTANCE_CLASS" {
type = string
description = ""
}
variable "DB_ENGINE_VERSION" {
type = string
description = ""
}
variable "SECRET_ARN" {
type = string
description = ""
}
variable "CHACHE_NODE_TYPE" {
type = string
description = ""
}
variable "CHACHE_NODE_NUM" {
type = number
description = ""
}
variable "CHACHE_ENGINE_VERSION" {
type = string
description = ""
}