-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiam.tf
106 lines (77 loc) · 2.07 KB
/
iam.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
locals {
aws_backup_managed_policy_arns = [
"arn:aws:iam::aws:policy/service-role/AWSBackupServiceRolePolicyForBackup",
"arn:aws:iam::aws:policy/service-role/AWSBackupServiceRolePolicyForRestores"
]
role_description = "Provides AWS Backup permission to create backups and perform restores on your behalf across AWS services"
}
module "source_role" {
source = "cloudposse/iam-role/aws"
version = "0.17.0"
enabled = var.enabled
providers = {
aws = aws.source
}
context = module.source_label.context
role_description = local.role_description
assume_role_actions = [
"sts:AssumeRole"
]
principals = {
Service = ["backup.amazonaws.com"]
}
managed_policy_arns = local.aws_backup_managed_policy_arns
policy_document_count = 0
}
module "target_role" {
source = "cloudposse/iam-role/aws"
version = "0.17.0"
enabled = var.enabled && var.is_cross_account_backup_enabled
providers = {
aws = aws.target
}
context = module.target_label.context
role_description = local.role_description
assume_role_actions = [
"sts:AssumeRole"
]
principals = {
Service = ["backup.amazonaws.com"]
}
policy_document_count = 0
managed_policy_arns = local.aws_backup_managed_policy_arns
}
# aws backup
data "aws_iam_policy_document" "source_vault" {
provider = aws.source
statement {
sid = "Enable backup"
effect = "Allow"
actions = ["backup:CopyIntoBackupVault"]
#checkov:skip=CKV_AWS_109
resources = ["*"]
principals {
identifiers = [
"arn:aws:iam::${data.aws_caller_identity.target.account_id}:root",
]
type = "AWS"
}
}
}
data "aws_iam_policy_document" "target_vault" {
count = var.is_cross_account_backup_enabled ? 1 : 0
provider = aws.target
statement {
sid = "Enable backup"
effect = "Allow"
actions = ["backup:CopyIntoBackupVault"]
#checkov:skip=CKV_AWS_109
resources = ["*"]
principals {
identifiers = [
"arn:aws:iam::${data.aws_caller_identity.source.account_id}:root",
]
type = "AWS"
}
}
}