-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoutputs.tf
More file actions
39 lines (32 loc) · 1.16 KB
/
outputs.tf
File metadata and controls
39 lines (32 loc) · 1.16 KB
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
output "sns_topic_arn" {
description = "ARN of the shared SNS topic."
value = aws_sns_topic.results.arn
}
output "sns_topic_name" {
description = "Name of the shared SNS topic."
value = aws_sns_topic.results.name
}
output "scheduled_lambda_arn" {
description = "ARN of the scheduled Lambda."
value = module.scheduled_lambda.lambda_arn
}
output "scheduled_lambda_role_arn" {
description = "ARN of the scheduled Lambda execution role."
value = module.scheduled_lambda.execution_role_arn
}
output "scheduled_lambda_role_name" {
description = "Name of the scheduled Lambda execution role."
value = module.scheduled_lambda.execution_role_name
}
output "scheduled_lambda_log_group" {
description = "CloudWatch log group name for the scheduled Lambda."
value = module.scheduled_lambda.log_group_name
}
output "schedule_rule_name" {
description = "EventBridge schedule rule name."
value = module.scheduled_lambda.schedule_rule_name
}
output "scheduled_lambda_test_url" {
description = "Lambda Function URL for on-demand test invokes (null if disabled)."
value = module.scheduled_lambda.test_function_url
}