-
Notifications
You must be signed in to change notification settings - Fork 31
/
iam-ecs-service.tf
47 lines (44 loc) · 1.09 KB
/
iam-ecs-service.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
resource "aws_iam_role" "ecs_service" {
name = "ecs-service-${var.name}-${data.aws_region.current.name}"
tags = merge(
var.tags,
{
"terraform" = "true"
},
)
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ecs.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
data "aws_iam_policy_document" "ecs_service_policy" {
statement {
effect = "Allow"
resources = ["*"]
actions = [
"elasticloadbalancing:DeregisterInstancesFromLoadBalancer",
"elasticloadbalancing:DeregisterTargets",
"elasticloadbalancing:Describe*",
"elasticloadbalancing:RegisterInstancesWithLoadBalancer",
"elasticloadbalancing:RegisterTargets",
"ec2:Describe*",
"ec2:AuthorizeSecurityGroupIngress",
]
}
}
resource "aws_iam_role_policy" "ecs_service_role_policy" {
name = "ecs_service_role_policy-${var.name}"
policy = data.aws_iam_policy_document.ecs_service_policy.json
role = aws_iam_role.ecs_service.id
}