forked from cloudposse/terraform-aws-lambda-function
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
54 lines (44 loc) · 1.38 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "arn" {
description = "ARN of the lambda function"
value = module.lambda.arn
}
output "invoke_arn" {
description = "Invoke ARN of the lambda function"
value = module.lambda.invoke_arn
}
output "qualified_arn" {
description = "ARN identifying your Lambda Function Version (if versioning is enabled via publish = true)"
value = module.lambda.qualified_arn
}
output "function_name" {
description = "Lambda function name"
value = module.lambda.function_name
}
output "role_name" {
description = "Lambda IAM role name"
value = module.lambda.role_name
}
output "role_arn" {
description = "Lambda IAM role ARN"
value = module.lambda.role_arn
}
output "cloudwatch_log_group_arn" {
description = "ARN of the log group"
value = module.lambda.cloudwatch_log_group_arn
}
output "cloudwatch_stream_arns" {
description = "ARNs of the log streams"
value = module.lambda.cloudwatch_stream_arns
}
output "cloudwatch_log_group_name" {
description = "Name of log group"
value = module.lambda.cloudwatch_log_group_name
}
output "cloudwatch_event_rule_ids" {
description = "A list of CloudWatch event rule IDs"
value = module.lambda.cloudwatch_event_rule_ids
}
output "cloudwatch_event_rule_arns" {
description = "A list of CloudWatch event rule ARNs"
value = module.lambda.cloudwatch_event_rule_arns
}