-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsg.tf
More file actions
45 lines (39 loc) · 1019 Bytes
/
sg.tf
File metadata and controls
45 lines (39 loc) · 1019 Bytes
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
# Create a Security Group for ECS
resource "aws_security_group" "ecs_sg" {
name = "ecs-security-group"
description = "Allow inbound traffic on container port for ECS tasks"
vpc_id = aws_vpc.main_vpc.id # Replace with your actual VPC ID
# Allow incoming traffic on port 5000 (for the Python app)
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"] # Open to all (restrict this in production)
}
# Allow all outgoing traffic (for internet access)
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
Name = "ecs-security-group"
}
}
resource "aws_security_group" "alb_sg" {
name = "alb-sg"
vpc_id = aws_vpc.main_vpc.id
ingress {
from_port = 80
to_port = 80
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"]
}
}