-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
19 lines (16 loc) · 767 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
output "sns_topic_arn" {
description = "The ARN of the SNS topic used"
value = local.sns_topic_arn
}
output "sns_topic_name" {
description = "The ARN of the SNS topic used"
value = aws_sns_topic.default.name
}
output "dashboard_combined" {
description = "URL to CloudWatch Combined Metric Dashboard"
value = "https://console.aws.amazon.com/cloudwatch/home?region=${var.region}#dashboards:name=${join("", aws_cloudwatch_dashboard.main.*.dashboard_name)}"
}
# output "dashboard_individual" {
# description = "URL to CloudWatch Individual Metric Dashboard"
# value = "https://console.aws.amazon.com/cloudwatch/home?region=${var.region}#dashboards:name=${join("",aws_cloudwatch_dashboard.main_individual.*.dashboard_name)}"
# }