-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
85 lines (61 loc) · 2.01 KB
/
terraform.tfvars
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
#Region
region-name = "us-east-1"
#VPC
vpc-cidr-block = "10.0.0.0/16"
vpc-name = "three-tier-vpc"
#INTERNET GATEWAY
internet_gateway_name = "three-tier-app-IG"
#NAT Gateway
nat-gw-name = "three-tier-app-NAT-Gateway"
#SUBNETS Availabilty Zone
az-1 = "us-east-1a"
az-2 = "us-east-1b"
#APP subnets
app-subnet1-cidr = "10.0.1.0/24"
app-subnet1-name = "three-tier-app-subnet-1"
app-subnet2-cidr = "10.0.2.0/24"
app-subnet2-name = "three-tier-app-subnet-2"
#WEB subnets
web-subnet1-cidr = "10.0.3.0/24"
web-subnet1-name = "three-tier-web-subnet-1"
web-subnet2-cidr = "10.0.4.0/24"
web-subnet2-name = "three-tier-web-subnet-2"
#DB subnets
db-subnet1-cidr = "10.0.5.0/24"
db-subnet1-name = "three-tier-web-subnet-1"
db-subnet2-cidr = "10.0.6.0/24"
db-subnet2-name = "three-tier-web-subnet-2"
#Database subnet group
db-subnet-grp-name = "three-tier-db-subgroup"
#Database Security group
db-sg-name = "three-tier-app-db"
#alb sg app name
alb-sg-app-name = "three-tier-app-ALB-Security-Group"
alb-app-name = "three-tier-alb-app"
#alb web name & SG
alb-sg-web-name = "three-tier-app-ALB-SG-Web"
alb-web-name = "three-tier-app-ALB-Web"
#asg app name
asg-app-name = "three-tier-app-ASG-App"
#ASG Security Group
asg-sg-app-name = "three-tier-app-ASG-Security-Group"
asg-sg-web-name = "three-tier-app-ASG-WEB-Security-Group"
#ALB app Target group
tg-app-name = "alb-app-target-group"
tg-web-name = "alb-web-target-group"
# launch template APP name
launch-template-app-name = "three-tier-app-launch-template-app"
image-id = "ami-0df435f331839b2d6"
instance-type = "t2.micro"
key-name = "aws-test"
app-instance-name = "launch template instance name"
launch-template-web-name = "three-tier-launch-template-web"
web-instance-name = "launch template web instance"
#asg app name
asg-web-name = "three-tier-app-ASG-WEB"
#RDS Database
db-name = "mihirmysql"
instance-class = "db.t3.micro"
#Public route table
public-rt-name = "Public route table"
private-rt-name = "Private route table"