Skip to content

Commit 0ae5606

Browse files
author
Jazeel
committed
Adding descriptions to output
1 parent c63f0ba commit 0ae5606

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

outputs.tf

+4
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,23 @@ output "lambda_role_unique_id" {
3939

4040
#For Lambda@Edge Association with cloudfront
4141
output "qualified_arn" {
42+
description = "The qualified arn of the lambda function to be associated with Cloudfront as a Lambda@Edge function"
4243
value = module.lambda.lambda_function_qualified_arn
4344
}
4445

4546
#For using lambda as origin for cloudfront
4647
output "function_url" {
48+
description = "The function url of lambda function to be able to be set as cloudfront origin"
4749
value = module.lambda.lambda_function_url
4850
}
4951

5052
output "function_url_id" {
53+
description = "The function url ID of lambda function to be able to be set as cloudfront origin"
5154
value = module.lambda.lambda_function_url_id
5255
}
5356

5457
#To associate lambdas with api gateway integration
5558
output "invoke_arn" {
59+
description = "The invoke arn of lambda function for APIGW integration"
5660
value = module.lambda.lambda_function_invoke_arn
5761
}

0 commit comments

Comments
 (0)