-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb-server.tf
66 lines (60 loc) · 1.67 KB
/
web-server.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
resource "aws_security_group" "sg_web_server" {
name = "sg_web_server"
description = "Allow TLS inbound traffic from public to load balancer"
vpc_id = module.vpc.vpc_id
ingress = [
{
description = "TLS from load balancer"
from_port = 8080
to_port = 8080
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
prefix_list_ids = []
security_groups = []
self = false
},
{
description = "SSH from public"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
prefix_list_ids = []
security_groups = []
self = false
}
]
egress = [
{
description = "Outgoing traffic"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
prefix_list_ids = []
security_groups = []
self = false
}
]
tags = {
Name = "sg_web_server"
}
}
resource "aws_instance" "tradium_alerts_web" {
ami = "ami-074cce78125f09d61"
instance_type = "t3.micro"
subnet_id = module.vpc.public_subnets[0]
monitoring = true
associate_public_ip_address = true
security_groups = [aws_security_group.sg_web_server.id]
key_name = aws_key_pair.deployer.key_name
credit_specification {
cpu_credits = "unlimited"
}
tags = {
Name = "tradium_alerts_web"
}
}