-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
80 lines (70 loc) · 2.04 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
# TF AWS dev env
provider "aws" {}
resource "aws_vpc" "dev-vpc" {
cidr_block = var.vpc_cidr
enable_dns_hostnames = true
}
resource "aws_subnet" "dev-subnet" {
vpc_id = aws_vpc.dev-vpc.id
cidr_block = var.subnet_cidr
availability_zone = var.aws_default_az
map_public_ip_on_launch = true
}
resource "aws_internet_gateway" "dev-igw" {
vpc_id = aws_vpc.dev-vpc.id
}
resource "aws_route_table" "dev-rt" {
vpc_id = aws_vpc.dev-vpc.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.dev-igw.id
}
}
resource "aws_route_table_association" "dev-rta" {
subnet_id = aws_subnet.dev-subnet.id
route_table_id = aws_route_table.dev-rt.id
}
resource "aws_security_group" "dev-ssh-sg" {
name = "dev-ssh-sg"
description = "SSH only access"
vpc_id = aws_vpc.dev-vpc.id
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
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_security_group" "dev-noaccess-sg" {
name = "dev-noaccess-sg"
description = "No direct access, use Tailscale VPN"
vpc_id = aws_vpc.dev-vpc.id
egress {
from_port = 0
to_port = 0
protocol = -1
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_instance" "bigdev" {
ami = data.aws_ami.latest-ubuntu.image_id
instance_type = var.instance_type
availability_zone = var.aws_default_az
key_name = "dev-tf"
subnet_id = aws_subnet.dev-subnet.id
vpc_security_group_ids = [
var.enable_ssh ? aws_security_group.dev-ssh-sg.id : aws_security_group.dev-noaccess-sg.id
]
root_block_device {
volume_size = var.root_device_size # GB
}
tags = {
Name = "bigdev"
}
}