-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmain.tf
120 lines (100 loc) · 2.41 KB
/
main.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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.67.0"
}
}
}
variable "region" {
description = "The AWS region of the provider"
}
variable "ami" {
description = "The Amazon Machine Image to use"
}
locals {
availability_zone = "${var.region}a"
}
resource "aws_vpc" "perf" {
cidr_block = "10.0.0.0/16"
}
resource "aws_subnet" "perf" {
vpc_id = aws_vpc.perf.id
cidr_block = "10.0.0.0/16"
availability_zone = local.availability_zone
map_public_ip_on_launch = true
}
resource "aws_internet_gateway" "perf" {
vpc_id = aws_vpc.perf.id
}
resource "aws_route_table" "perf" {
vpc_id = aws_vpc.perf.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.perf.id
}
}
resource "aws_route_table_association" "perf" {
subnet_id = aws_subnet.perf.id
route_table_id = aws_route_table.perf.id
}
resource "aws_security_group" "restricted_inbound" {
name = "restricted_inbound"
description = "Allow SSH and port 4001 inbound traffic (TCP and UDP), allow all outbound traffic"
vpc_id = aws_vpc.perf.id
# ICMP
ingress {
from_port = -1
to_port = -1
protocol = "icmp"
cidr_blocks = ["0.0.0.0/0"]
}
# SSH (TCP)
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 1
to_port = 65535
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 1
to_port = 65535
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_launch_template" "perf" {
name = "perf-node"
image_id = var.ami
instance_type = "m5n.8xlarge"
# Debug via:
# - /var/log/cloud-init.log and
# - /var/log/cloud-init-output.log
user_data = filebase64("${path.module}/files/user-data.sh")
instance_initiated_shutdown_behavior = "terminate"
network_interfaces {
subnet_id = aws_subnet.perf.id
security_groups = [aws_security_group.restricted_inbound.id]
delete_on_termination = true
}
block_device_mappings {
device_name = "/dev/xvda"
ebs {
volume_size = 100 # New root volume size in GiB
volume_type = "gp2"
delete_on_termination = true
}
}
}