We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a5769f commit 0339046Copy full SHA for 0339046
1 file changed
terraform/service/main.tf
@@ -16,11 +16,11 @@ resource "aws_security_group" "lambda_sg" {
16
cidr_blocks = ["10.0.0.0/16"] // Allow HTTPS traffic within VPC
17
}
18
egress {
19
- description = "Allow all outbound traffic to any destination"
20
- from_port = 0
21
- to_port = 0
22
- protocol = "-1"
23
- cidr_blocks = ["0.0.0.0/0"] // Allow all outbound traffic
+ description = "Allow all outbound HTTPS traffic to any destination"
+ from_port = 443
+ to_port = 443
+ protocol = "tcp"
+ cidr_blocks = ["0.0.0.0/0"] // Allow all outbound HTTPS traffic
24
25
26
0 commit comments