Skip to content

Commit 3dca8a9

Browse files
author
Jazeel
committed
Adding outputs to be used by cloudfront and api gateway
1 parent f715060 commit 3dca8a9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

outputs.tf

+18
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,21 @@ output "lambda_role_unique_id" {
3434
description = "The unique id of the IAM role created for the Lambda Function"
3535
value = module.lambda.lambda_role_unique_id
3636
}
37+
38+
# For Lambda Edge and Cloudfront Integration
39+
40+
output "qualified_arn" {
41+
value = module.lambda.lambda_function_qualified_arn
42+
}
43+
44+
output "function_url" {
45+
value = module.lambda.lambda_function_url
46+
}
47+
48+
output "function_url_id" {
49+
value = module.lambda.lambda_function_url_id
50+
}
51+
52+
output "invoke_arn" {
53+
value = module.lambda.lambda_function_invoke_arn
54+
}

0 commit comments

Comments
 (0)