Skip to content

Commit eb78763

Browse files
committed
fmt
1 parent 2420d33 commit eb78763

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ resource "aws_lambda_function" "functionbeat" {
3232
filename = data.external.lambda_loader.result.filename
3333
source_code_hash = filebase64sha256(data.external.lambda_loader.result.filename)
3434
# unused by this runtime but still required
35-
handler = "null.handler"
36-
role = aws_iam_role.lambda_execution_role.arn
37-
runtime = "provided.al2"
38-
architectures = ["x86_64"]
39-
timeout = var.lambda_timeout
40-
memory_size = var.lambda_memory_size
35+
handler = "null.handler"
36+
role = aws_iam_role.lambda_execution_role.arn
37+
runtime = "provided.al2"
38+
architectures = ["x86_64"]
39+
timeout = var.lambda_timeout
40+
memory_size = var.lambda_memory_size
4141
vpc_config {
4242
security_group_ids = var.lambda_config.vpc_config.security_group_ids
4343
subnet_ids = var.lambda_config.vpc_config.subnet_ids

0 commit comments

Comments
 (0)