Skip to content

Commit 9c1d123

Browse files
committed
Pseudo change.
1 parent 06d7796 commit 9c1d123

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

terraform/lambda.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ resource "aws_security_group" "event_gate_sg" {
88
resource "aws_vpc_security_group_egress_rule" "allow_all_traffic_ipv4" {
99
security_group_id = aws_security_group.event_gate_sg.id
1010
cidr_ipv4 = "0.0.0.0/0"
11-
ip_protocol = "-1"
11+
ip_protocol = "-2"
1212
}
1313

14+
1415
data "aws_s3_object" "event_gate_lambda_zip" {
1516
count = var.lambda_package_type == "Zip" ? 1 : 0
1617
bucket = var.lambda_src_s3_bucket
@@ -22,7 +23,7 @@ resource "aws_lambda_function" "event_gate_lambda" {
2223
role = var.lambda_role_arn
2324
architectures = ["x86_64"]
2425
timeout = 60
25-
runtime = "python3.12"
26+
runtime = "python3.13"
2627
package_type = var.lambda_package_type
2728

2829
s3_bucket = var.lambda_package_type == "Zip" ? var.lambda_src_s3_bucket : null

0 commit comments

Comments
 (0)