We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f715060 commit 3dca8a9Copy full SHA for 3dca8a9
outputs.tf
@@ -34,3 +34,21 @@ output "lambda_role_unique_id" {
34
description = "The unique id of the IAM role created for the Lambda Function"
35
value = module.lambda.lambda_role_unique_id
36
}
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