-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_vpc.tf
63 lines (55 loc) · 1.37 KB
/
example_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
provider "aws" {
region = "eu-central-1"
}
resource "aws_vpc" "example" {
cidr_block = "10.155.0.0/16"
}
resource "aws_internet_gateway" "example" {
vpc_id = "${aws_vpc.example.id}"
}
resource "aws_route_table" "example" {
vpc_id = "${aws_vpc.example.id}"
route {
cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.example.id}"
}
}
resource "aws_security_group" "example" {
name = "example_sg_allow_all"
description = "example_sg_allow_all"
vpc_id = "${aws_vpc.example.id}"
ingress {
from_port = 80
to_port = 80
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 22
to_port = 22
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["${aws_subnet.example.cidr_block}"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_route_table_association" "example" {
subnet_id = "${aws_subnet.example.id}"
route_table_id = "${aws_route_table.example.id}"
}
resource "aws_subnet" "example" {
vpc_id = "${aws_vpc.example.id}"
cidr_block = "10.155.0.0/24"
availability_zone = "eu-central-1a"
map_public_ip_on_launch = true
}