-
Notifications
You must be signed in to change notification settings - Fork 7
/
vpc.tf
118 lines (99 loc) · 2.61 KB
/
vpc.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
#CREATE VPC IN AWS
resource "aws_vpc" "ravindravpc" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
tags = {
Name = "ravindravpc"
}
}
#CREATE INTERNET IGW and ATTACHING TO RAVINDRAVPC
resource "aws_internet_gateway" "gw" {
vpc_id = "${aws_vpc.ravindravpc.id}"
tags = {
Name = "main"
}
}
#CREATION OF VPC PUBLIC SUBNET
resource "aws_subnet" "public1" {
vpc_id = "${aws_vpc.ravindravpc.id}"
cidr_block = "10.0.1.0/24"
availability_zone = "us-east-1e"
map_public_ip_on_launch = "true"
tags = {
Name = "Public-Subnet-1"
}
}
resource "aws_subnet" "public2" {
vpc_id = "${aws_vpc.ravindravpc.id}"
cidr_block = "10.0.2.0/24"
availability_zone = "us-east-1f"
map_public_ip_on_launch = "true"
tags = {
Name = "Public-Subnet-2"
}
}
resource "aws_route_table" "public1" {
vpc_id = "${aws_vpc.ravindravpc.id}"
route {
cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.gw.id}"
}
tags = {
Name = "Public-Subnet-1"
}
}
resource "aws_route_table_association" "public1" {
subnet_id = "${aws_subnet.public1.id}"
route_table_id = "${aws_route_table.public1.id}"
}
resource "aws_route_table_association" "public2" {
subnet_id = "${aws_subnet.public2.id}"
route_table_id = "${aws_route_table.public1.id}"
}
#CREATION OF PRIVATE SUBNET
resource "aws_subnet" "private1" {
vpc_id = "${aws_vpc.ravindravpc.id}"
cidr_block = "10.0.3.0/24"
map_public_ip_on_launch = "true"
tags = {
Name = "Private-Subnet-1"
}
}
resource "aws_subnet" "private2" {
vpc_id = "${aws_vpc.ravindravpc.id}"
cidr_block = "10.0.4.0/24"
map_public_ip_on_launch = "true"
tags = {
Name = "Private-Subnet-2"
}
}
resource "aws_route_table" "private1" {
vpc_id = "${aws_vpc.ravindravpc.id}"
route {
cidr_block = "0.0.0.0/0"
nat_gateway_id = "${aws_nat_gateway.gw.id}"
}
tags = {
Name = "Private-Subnet-1"
}
}
resource "aws_route_table_association" "private1" {
subnet_id = "${aws_subnet.private1.id}"
route_table_id = "${aws_route_table.private1.id}"
}
resource "aws_route_table_association" "private2" {
subnet_id = "${aws_subnet.private2.id}"
route_table_id = "${aws_route_table.private1.id}"
}
#CREATION OF NAT GATEWAY AND ATTACHING TO PRIVATE SUBNET
resource "aws_eip" "nat" {
vpc = true
}
resource "aws_nat_gateway" "gw" {
allocation_id = "${aws_eip.nat.id}"
subnet_id = "${aws_subnet.public1.id}"
tags = {
Name = "gw NAT"
}
}