-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariables.tf
99 lines (80 loc) · 2.12 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
variable "Landmarktechvpc" {
default = "Landmarktechvpc"
description = "The VPC name"
}
variable "VPCName" {
default = "Landmarktechvpc"
description = "The VPC name"
}
variable "Landmarktechvpccidr" {
default = "10.0.0.0/16"
description = "The CIDR block for the custom VPC"
}
variable "PublicSubnet1_CIDR" {
default = "10.0.1.0/24"
description = "CIDR block for Public Subnet 1"
}
variable "PublicSubnet2_CIDR" {
default = "10.0.2.0/24"
description = "CIDR block for Public Subnet 2"
}
variable "PrivateSubnet1_CIDR" {
default = "10.0.11.0/24"
description = "CIDR block for Private Subnet 1"
}
variable "PrivateSubnet2_CIDR" {
default = "10.0.12.0/24"
description = "CIDR block for Private Subnet 2"
}
variable "PrivateSubnet3_CIDR" {
default = "10.0.13.0/24"
description = "CIDR block for Private Subnet 3"
}
variable "PrivateSubnet4_CIDR" {
default = "10.0.14.0/24"
description = "CIDR block for Private Subnet 4"
}
variable "ApplicationLoadBalancer" {
default = "LabVPCALB"
description = "Application load balancer"
}
variable "all_IPs" {
default = "0.0.0.0/0"
description = "All IPs on the internet"
}
variable "igw" {
default = "LabVPCInternetGateway"
description = "The Internet Gateway for the VPC"
}
variable "nat_gw" {
default = "LabVPCNATGateway"
description = "NAT Gateway for Private Subnet"
}
variable "eip" {
default = "LandmarktechEIP"
description = "Elastic IP for NAT Gateway"
}
variable "nat_gw2" {
default = "LandmarktechNATGateway2"
description = "NAT Gateway for Private Subnet"
}
variable "eip2" {
default = "LandmarktechEIP2"
description = "Elastic IP for NAT Gateway"
}
variable "instancetype" {
default = "t3.micro"
description = "Instance type for the application server"
}
variable "region" {
default = "us-east-1"
description = "the region to provision resources in"
}
variable "access_key" {
default = "AKIA5FQX4UVK"
description = "access_key for our region "
}
variable "secret_key" {
default = "B9ZD9e8C/gb9XoIZCT"
description = "secret_key for our region "
}