-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnat-gateway.tf
99 lines (82 loc) · 2.8 KB
/
nat-gateway.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
# Allocate Elastic IP Address (EIP 1)
# terraform aws allocate elastic ip
resource "aws_eip" "eip-for-nat-gateway-1" {
vpc = true
tags = {
Name = "EIP-1"
}
}
# Allocate Elastic IP Address (EIP 2)
# terraform aws allocate elastic ip
resource "aws_eip" "eip-for-nat-gateway-2" {
vpc = true
tags = {
Name = "EIP-2"
}
}
# Create Nat Gateway 1 in Public Subnet 1
# terraform create aws nat gateway
resource "aws_nat_gateway" "nat-gateway-1" {
allocation_id = aws_eip.eip-for-nat-gateway-1.id
subnet_id = aws_subnet.public-subnet-1.id
tags = {
Name = "NAT-Gateway-Public-Subnet-1"
}
}
# Create Nat Gateway 2 in Public Subnet 2
# terraform create aws nat gateway
resource "aws_nat_gateway" "nat-gateway-2" {
allocation_id = aws_eip.eip-for-nat-gateway-2.id
subnet_id = aws_subnet.public-subnet-2.id
tags = {
Name = "NAT-Gateway-Public-Subnet-2"
}
}
# Create Private Route Table 1 and Add Route Through Nat Gateway 1
# terraform aws create route table
resource "aws_route_table" "private-route-table-1" {
vpc_id = aws_vpc.vpc.id
route {
cidr_block = "0.0.0.0/0"
nat_gateway_id = aws_nat_gateway.nat-gateway-1.id
}
tags = {
Name = "Private-route-table-1"
}
}
# Associate Private Subnet 1 with "Private Route Table 1"
# terraform aws associate subnet with route table
resource "aws_route_table_association" "private-subnet-1-route-table-association" {
subnet_id = aws_subnet.private-subnet-1.id
route_table_id = aws_route_table.private-route-table-1.id
}
# Associate Private Subnet 3 with "Private Route Table 1"
# terraform aws associate subnet with route table
resource "aws_route_table_association" "private-subnet-3-route-table-association" {
subnet_id = aws_subnet.private-subnet-3.id
route_table_id = aws_route_table.private-route-table-1.id
}
# Create Private Route Table 2 and Add Route Through Nat Gateway 2
# terraform aws create route table
resource "aws_route_table" "private-route-table-2" {
vpc_id = aws_vpc.vpc.id
route {
cidr_block = "0.0.0.0/0"
nat_gateway_id = aws_nat_gateway.nat-gateway-2.id
}
tags = {
Name = "private-route-table-2"
}
}
# Associate Private Subnet 2 with "Private Route Table 2"
# terraform aws associate subnet with route table
resource "aws_route_table_association" "private-subnet-2-route-table-association" {
subnet_id = aws_subnet.private-subnet-2.id
route_table_id = aws_route_table.private-route-table-2.id
}
# Associate Private Subnet 4 with "Private Route Table 2"
# terraform aws associate subnet with route table
resource "aws_route_table_association" "private-subnet-4-route-table-association" {
subnet_id = aws_subnet.private-subnet-4.id
route_table_id = aws_route_table.private-route-table-2.id
}