This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin-ec2.tf
71 lines (61 loc) · 1.7 KB
/
admin-ec2.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
# SG
resource "aws_security_group" "sg_admin" {
name = "elon-kiosk-admin-sg"
description = "Admin EC2 Security Group"
vpc_id = aws_vpc.vpc_main.id
tags = {
Name = "elon-kiosk-admin-sg"
}
}
## SG Rules
### Ingress
resource "aws_security_group_rule" "sg_admin_rule_ing_test_port" {
type = "ingress"
from_port = 8080
to_port = 8080
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = aws_security_group.sg_admin.id
lifecycle {
create_before_destroy = true
}
}
resource "aws_security_group_rule" "sg_admin_rule_ing_ssh" {
type = "ingress"
from_port = 22
to_port = 22
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = aws_security_group.sg_admin.id
lifecycle {
create_before_destroy = true
}
}
### Egress
resource "aws_security_group_rule" "sg_admin_rule_eg_all" {
type = "egress"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = aws_security_group.sg_admin.id
lifecycle {
create_before_destroy = true
}
}
# WARNING
# This instance is intended to use as a SSH tunnel to the API server instance
# Should be deleted in production environment
resource "aws_instance" "admin" {
ami = data.aws_ami.amazonLinux.id
instance_type = "t2.micro"
subnet_id = aws_subnet.pub_subnet_az1.id
key_name = "elon-kiosk-ssh-pubkey"
associate_public_ip_address = true
vpc_security_group_ids = [
aws_security_group.sg_admin.id
]
tags = {
Name = "elon-kiosk-admin"
}
}