-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathec2-iam.tf
64 lines (57 loc) · 1.46 KB
/
ec2-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
resource "aws_iam_instance_profile" "default" {
name = "${var.name}-${data.aws_region.current.name}"
role = aws_iam_role.default.name
}
resource "aws_iam_role" "default" {
name = "${var.name}-${data.aws_region.current.name}"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
inline_policy {
name = "ebs-attach-volume"
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = ["ec2:AttachVolume", "ec2:DetachVolume", "ec2:DescribeVolumeStatus"]
Effect = "Allow"
Resource = compact([try(aws_ebs_volume.default[0].arn, ""), "arn:aws:ec2:*:*:instance/*"])
},
{
Action = ["ec2:DescribeVolumes"]
Effect = "Allow"
Resource = ["*"]
},
]
})
}
inline_policy {
name = "cloudwatch"
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = ["logs:CreateLogStream", "logs:DescribeLogStreams", "logs:PutLogEvents", "cloudwatch:PutMetricData"]
Effect = "Allow"
Resource = ["*"]
}
]
})
}
}
resource "aws_iam_role_policy_attachment" "default_ssm" {
role = aws_iam_role.default.name
policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonEC2RoleforSSM"
}