-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiam.tf
45 lines (36 loc) · 1.01 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
module "iam_label" {
source = "justtrackio/label/null"
version = "0.26.0"
label_order = var.label_orders.iam
context = module.this.context
}
data "aws_iam_policy_document" "default" {
statement {
sid = "TraefikECSReadAccess"
effect = "Allow"
actions = [
"ecs:ListClusters",
"ecs:DescribeClusters",
"ecs:ListTasks",
"ecs:DescribeTasks",
"ecs:DescribeContainerInstances",
"ecs:DescribeTaskDefinition",
"ec2:DescribeInstances",
"ssm:DescribeInstanceInformation"
]
resources = ["*"]
}
}
resource "aws_iam_policy" "default" {
name = module.iam_label.id
policy = data.aws_iam_policy_document.default.json
tags = module.iam_label.tags
}
resource "aws_iam_role_policy_attachment" "task" {
role = module.service_task.task_role_name
policy_arn = aws_iam_policy.default.arn
}
resource "aws_iam_role_policy_attachment" "task_exec" {
role = module.service_task.task_exec_role_name
policy_arn = aws_iam_policy.default.arn
}