-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
179 lines (135 loc) · 3.38 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
variable "region-name" {
description = "Region name"
}
variable "vpc-cidr-block" {
description = "CIDR Block for VPC"
}
variable "vpc-name" {
description = "Name for Virtual Private Cloud"
}
variable "igw-name" {
description = "Name for Internet Gateway"
}
variable "nat-gw-name" {
description = "Name for NAT Gateway"
}
variable "web-subnet1-cidr" {
description = "CIDR Block for Web-tier Subnet-1"
}
variable "web-subnet1-name" {
description = "Name for Web-tier Subnet-1"
}
variable "web-subnet2-cidr" {
description = "CIDR Block for Web-tier Subnet-2"
}
variable "web-subnet2-name" {
description = "Name for Web-tier Subnet-2"
}
variable "app-subnet1-cidr" {
description = "CIDR Block for Application-tier Subnet-1"
}
variable "app-subnet1-name" {
description = "Name for app-tier Subnet-1"
}
variable "app-subnet2-cidr" {
description = "CIDR Block for Application-tier Subnet-2"
}
variable "app-subnet2-name" {
description = "Name for Application-tier Subnet-2"
}
variable "db-subnet1-cidr" {
description = "CIDR Block for Database-tier Subnet-1"
}
variable "db-subnet1-name" {
description = "Name for Database-tier Subnet-1"
}
variable "db-subnet2-cidr" {
description = "CIDR Block for Database-tier Subnet-2"
}
variable "db-subnet2-name" {
description = "Name for Database-tier Subnet-2"
}
variable "az-1" {
description = "Availabity Zone 1"
}
variable "az-2" {
description = "Availabity Zone 2"
}
variable "public-rt-name" {
description = "Name for Public Route table"
}
variable "private-rt-name" {
description = "Name for Private Route table"
}
variable "launch-template-web-name" {
description = "Name for Launch-template-1"
}
variable "image-id" {
description = "Value for Image-id"
}
variable "instance-type" {
description = "Value for Instance type"
}
variable "key-name" {
description = "Value for Key name"
}
variable "web-instance-name" {
description = "Value for Web Instances"
}
variable "alb-web-name" {
description = "Name the Load Balancer for the Web Tier"
}
variable "alb-sg-web-name" {
description = "Name for alb security group 1"
}
variable "asg-web-name" {
description = "Name the Auto Scaling group in Web Tier"
}
variable "asg-sg-web-name" {
description = "Name for asg security group 1"
}
variable "tg-web-name" {
description = "Name for Target group web"
}
variable "launch-template-app-name" {
description = "Name for Launch-template-1"
}
variable "app-instance-name" {
description = "Value for App Instances"
}
variable "alb-app-name" {
description = "Name the Load Balancer for the App Tier"
}
variable "alb-sg-app-name" {
description = "Name for alb security group 1"
}
variable "asg-app-name" {
description = "Name the Auto Scaling group in app Tier"
}
variable "asg-sg-app-name" {
description = "Name for asg security group 1"
}
variable "tg-app-name" {
description = "Name for Target group app"
}
variable "db-username" {
description = "Username for db instance"
}
variable "db-password" {
description = "Password for db instance"
}
variable "db-name" {
description = "Name for Database"
}
variable "instance-class" {
description = "Value for DB instance class"
}
variable "db-sg-name" {
description = "Name for DB Security group"
}
variable "db-subnet-grp-name" {
description = "Name for DB Subnet Group"
}
variable "app-db-sg-name" {
description = "Name for App-DB SEcurity group"
}