From 3d0c6110679cf234aef859e1d26061687b72aa88 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sat, 20 Sep 2025 14:03:12 -0700 Subject: [PATCH] Output ARN from lambda function --- outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 outputs.tf diff --git a/outputs.tf b/outputs.tf new file mode 100644 index 0000000..9d2aea2 --- /dev/null +++ b/outputs.tf @@ -0,0 +1,4 @@ +output "lambda_function_arn" { + description = "The ARN of the lambda-promtail function." + value = aws_lambda_function.this.arn +}