We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d7796 commit 9c1d123Copy full SHA for 9c1d123
1 file changed
terraform/lambda.tf
@@ -8,9 +8,10 @@ resource "aws_security_group" "event_gate_sg" {
8
resource "aws_vpc_security_group_egress_rule" "allow_all_traffic_ipv4" {
9
security_group_id = aws_security_group.event_gate_sg.id
10
cidr_ipv4 = "0.0.0.0/0"
11
- ip_protocol = "-1"
+ ip_protocol = "-2"
12
}
13
14
+
15
data "aws_s3_object" "event_gate_lambda_zip" {
16
count = var.lambda_package_type == "Zip" ? 1 : 0
17
bucket = var.lambda_src_s3_bucket
@@ -22,7 +23,7 @@ resource "aws_lambda_function" "event_gate_lambda" {
22
23
role = var.lambda_role_arn
24
architectures = ["x86_64"]
25
timeout = 60
- runtime = "python3.12"
26
+ runtime = "python3.13"
27
package_type = var.lambda_package_type
28
29
s3_bucket = var.lambda_package_type == "Zip" ? var.lambda_src_s3_bucket : null
0 commit comments