-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (56 loc) · 1.47 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
variable alb-name {
description = "name of the application load balancer"
type = string
}
variable node-ls-port {
description = "load balancer listener port"
type = number
}
variable node-tg-name {
description = "name of load balancer target group"
type = string
}
variable node-tg-port {
description = "load balancer target group port"
type = number
}
variable subnet1_id {
description = "ID of the public_subnet1"
type = string
}
variable subnet2_id {
description = "ID of the public_subnet2"
type = string
}
variable avail_zone1 {
description = "availability zone of private_subnet1"
type = string
}
variable private-subnet1-cidr-block {
description = "CIDR block of private_subnet1"
type = string
}
variable avail_zone2 {
description = "availability zone of private_subnet1"
type = string
}
variable private-subnet2-cidr-block {
description = "CIDR block of private_subnet2"
type = string
}
variable private-subnet1-route-table-cidr-block {
description = "CIDR block of private_subnet1 route_table to NAT Gateway"
type = string
}
variable private-subnet2-route-table-cidr-block {
description = "CIDR block of private_subnet2 route_table to NAT Gateway"
type = string
}
variable asg-name {
description = "name of autoscaling group"
type = string
}
variable instance_type {
description = "ec2 instance type"
type = string
}