-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiam.tf
76 lines (66 loc) · 1.54 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
data "aws_iam_policy_document" "backup_and_eip" {
statement {
actions = [
"ec2:AssociateAddress"
]
resources = ["*"]
}
statement {
actions = [
"s3:PutObject",
"s3:GetObject",
"s3:HeadObject",
"s3:ListBucket",
"s3:HeadBucket"
]
resources = [
"${module.backup_bucket.s3_bucket_arn}/*",
module.backup_bucket.s3_bucket_arn
]
}
statement {
actions = [
"ecr:GetAuthorizationToken",
"ecr:BatchCheckLayerAvailability",
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage"
]
resources = ["*"]
}
}
resource "aws_iam_policy" "backup_and_eip" {
name = var.name
policy = data.aws_iam_policy_document.backup_and_eip.json
}
resource "aws_iam_instance_profile" "this" {
name = var.name
role = aws_iam_role.this.name
}
resource "aws_iam_role" "this" {
name = var.name
path = "/"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_iam_role_policy_attachment" "this" {
policy_arn = aws_iam_policy.backup_and_eip.arn
role = aws_iam_role.this.name
}
resource "aws_iam_role_policy_attachment" "cloudwatch_agent" {
count = (var.enable_cloudwatch_metrics ? 1 : 0)
policy_arn = data.aws_iam_policy.aws_cloudwatch_agent_server_policy.arn
role = aws_iam_role.this.name
}