forked from claranet/terraform-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
29 lines (24 loc) · 903 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
output "function_arn" {
description = "The ARN of the Lambda function"
value = join("", aws_lambda_function.lambda.*.arn)
}
output "function_invoke_arn" {
description = "The Invoke ARN of the Lambda function"
value = join("", aws_lambda_function.lambda.*.invoke_arn)
}
output "function_name" {
description = "The name of the Lambda function"
value = join("", aws_lambda_function.lambda.*.function_name)
}
output "function_qualified_arn" {
description = "The qualified ARN of the Lambda function"
value = join("", aws_lambda_function.lambda.*.qualified_arn)
}
output "role_arn" {
description = "The ARN of the IAM role created for the Lambda function"
value = join("", aws_iam_role.lambda.*.arn)
}
output "role_name" {
description = "The name of the IAM role created for the Lambda function"
value = join("", aws_iam_role.lambda.*.name)
}