-
Notifications
You must be signed in to change notification settings - Fork 5
/
outputs.tf
34 lines (28 loc) · 945 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
30
31
32
33
34
output "function_arn" {
description = "The ARN of the Lambda function"
value = module.lambda.function_arn
}
output "function_invoke_arn" {
description = "The Invoke ARN of the Lambda function"
value = module.lambda.function_invoke_arn
}
output "function_name" {
description = "The name of the Lambda function"
value = module.lambda.function_name
}
output "function_qualified_arn" {
description = "The qualified ARN of the Lambda function"
value = module.lambda.function_qualified_arn
}
output "role_arn" {
description = "The ARN of the IAM role created for the Lambda function"
value = module.lambda.role_arn
}
output "role_name" {
description = "The name of the IAM role created for the Lambda function"
value = module.lambda.role_name
}
output "python_ldap_layer_arn" {
description = "ARN of the python-ldap layer"
value = module.lambda_layer.this_lambda_layer_arn
}