forked from inaciogu/terraform-aws-ecs-fargate-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicies.tf
84 lines (76 loc) · 2.21 KB
/
policies.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
resource "aws_iam_role" "ecs_execution_role" {
for_each = local.services
name = "${each.value.task_definition.family_name}-execution-role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
Service = "ecs-tasks.amazonaws.com"
}
}
]
})
tags = var.tags
lifecycle {
ignore_changes = [tags]
}
}
resource "aws_iam_policy" "ecs_task_execution_policy" {
for_each = local.services
name = "${each.value.task_definition.family_name}-execution-policy"
policy = jsonencode({
"Version" : "2012-10-17",
"Statement" : [
{
"Effect" : "Allow",
"Action" : [
"ecr:GetAuthorizationToken"
],
"Resource" : "*"
},
{
"Effect" : "Allow",
"Action" : [
"ecr:BatchCheckLayerAvailability",
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage",
],
"Resource" : [
for container in each.value.task_definition.container_definitions : "arn:aws:ecr:${var.aws_region}:${var.account_id}:repository/${container.repository_name}"
]
},
{
"Effect" : "Allow",
"Action" : [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource" : [
for container in each.value.task_definition.container_definitions : "arn:aws:logs:${var.aws_region}:${var.account_id}:log-group:/ecs/${container.name}:*"
]
},
{
"Effect" : "Allow",
"Action" : [
"secretsmanager:GetSecretValue"
],
"Resource" : [
for container in each.value.task_definition.container_definitions : container.secret_manager != null ? data.aws_secretsmanager_secret.data_source_secrets[container.name].arn : "*"
]
}
]
})
tags = var.tags
lifecycle {
ignore_changes = [tags]
}
}
resource "aws_iam_role_policy_attachment" "ecs_task_execution_policy_attachment" {
for_each = local.services
role = aws_iam_role.ecs_execution_role[each.key].name
policy_arn = aws_iam_policy.ecs_task_execution_policy[each.key].arn
}