-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvpc.tf
131 lines (112 loc) · 2.91 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
119
120
121
122
123
124
125
126
127
128
129
130
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
enable_dns_support = true
enable_dns_hostnames = true
tags {
Name = "main vpc"
}
}
resource "aws_internet_gateway" "gw" {
vpc_id = "${aws_vpc.main.id}"
tags {
Name = "main igw"
}
}
resource "aws_route_table" "public" {
vpc_id = "${aws_vpc.main.id}"
route {
cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.gw.id}"
}
tags {
Name = "public"
}
}
resource "aws_route_table" "privatea" {
vpc_id = "${aws_vpc.main.id}"
# N.B. These type of routes are the equivalent of what AWSnycast creates in this configuration
# This allows you to comment / un-comment them to play with what happens
# route {
# cidr_block = "0.0.0.0/0"
# instance_id = "${aws_instance.nat-a.id}"
# }
# route {
# cidr_block = "192.168.1.1/32"
# instance_id = "${aws_instance.nat-a.id}"
# }
tags {
Name = "private a"
az = "eu-west-1a"
type = "private"
}
}
resource "aws_route_table" "privateb" {
vpc_id = "${aws_vpc.main.id}"
# route {
# cidr_block = "0.0.0.0/0"
# instance_id = "${aws_instance.nat-b.id}"
# }
# route {
# cidr_block = "192.168.1.1/32"
# instance_id = "${aws_instance.nat-b.id}"
# }
tags {
Name = "private b"
az = "eu-west-1b"
type = "private"
}
}
resource "aws_subnet" "publica" {
vpc_id = "${aws_vpc.main.id}"
cidr_block = "10.0.0.0/24"
map_public_ip_on_launch = true
availability_zone = "eu-west-1a"
tags {
Name = "public a"
az = "eu-west-1a"
type = "public"
}
}
resource "aws_subnet" "publicb" {
vpc_id = "${aws_vpc.main.id}"
cidr_block = "10.0.1.0/24"
map_public_ip_on_launch = true
availability_zone = "eu-west-1b"
tags {
Name = "public b"
az = "eu-west-1a"
type = "public"
}
}
resource "aws_route_table_association" "publica" {
subnet_id = "${aws_subnet.publica.id}"
route_table_id = "${aws_route_table.public.id}"
}
resource "aws_route_table_association" "publicb" {
subnet_id = "${aws_subnet.publicb.id}"
route_table_id = "${aws_route_table.public.id}"
}
resource "aws_subnet" "privatea" {
vpc_id = "${aws_vpc.main.id}"
cidr_block = "10.0.10.0/24"
availability_zone = "eu-west-1a"
tags {
Name = "eu-west-1a private"
}
}
resource "aws_subnet" "privateb" {
vpc_id = "${aws_vpc.main.id}"
cidr_block = "10.0.11.0/24"
availability_zone = "eu-west-1b"
tags {
Name = "eu-west-1b private"
}
}
resource "aws_route_table_association" "privatea" {
subnet_id = "${aws_subnet.privatea.id}"
route_table_id = "${aws_route_table.privatea.id}"
}
resource "aws_route_table_association" "privateb" {
subnet_id = "${aws_subnet.privateb.id}"
route_table_id = "${aws_route_table.privateb.id}"
}