forked from lgallard/terraform-aws-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notifications.tf
30 lines (28 loc) · 1.08 KB
/
notifications.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
data "aws_iam_policy_document" "backup_events" {
count = var.enabled && !var.notifications_disable_sns_policy && length(var.notifications) > 0 ? 1 : 0
statement {
actions = [
"SNS:Publish",
]
effect = "Allow"
principals {
type = "Service"
identifiers = ["backup.amazonaws.com"]
}
resources = [
lookup(var.notifications, "sns_topic_arn", null)
]
sid = "BackupPublishEvents"
}
}
resource "aws_sns_topic_policy" "backup_events" {
count = var.enabled && !var.notifications_disable_sns_policy && length(var.notifications) > 0 ? 1 : 0
arn = lookup(var.notifications, "sns_topic_arn", null)
policy = data.aws_iam_policy_document.backup_events[0].json
}
resource "aws_backup_vault_notifications" "backup_events" {
count = var.enabled && length(var.notifications) > 0 ? 1 : 0
backup_vault_name = var.vault_name != null ? aws_backup_vault.ab_vault[0].name : "Default"
sns_topic_arn = lookup(var.notifications, "sns_topic_arn", null)
backup_vault_events = lookup(var.notifications, "backup_vault_events", [])
}