-
Notifications
You must be signed in to change notification settings - Fork 1
/
policies.tf
95 lines (89 loc) · 2.26 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
85
86
87
88
89
90
91
92
93
94
95
###########################
# ECS Task Execution Role #
###########################
resource "aws_iam_role" "ecs-task-execution-role" {
name = "${var.ecs-task-name}-taskExecutionRole"
assume_role_policy = jsonencode(
{
Version : "2012-10-17",
Statement : [
{
Effect : "Allow"
Action : "sts:AssumeRole",
Principal : {
Service : "ecs-tasks.amazonaws.com"
},
}
]
})
}
##############
# ECS Policy #
##############
resource "aws_iam_role_policy" "ecs-policy" {
name = "${var.ecs-task-name}-policy"
role = aws_iam_role.ecs-task-execution-role.id
policy = jsonencode(
{
Version : "2012-10-17",
Statement : [
{
"Sid" : "AllowLogs",
"Effect" : "Allow",
"Action" : [
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource" : "*"
},
{
"Sid" : "AllowGetSecrets"
"Action" : [
"secretsmanager:GetSecret",
"secretsmanager:GetSecretValue"
],
"Effect" : "Allow",
"Resource" : [
var.secrets-manager
]
},
{
"Sid" : "AllowImagePullFromECR",
"Effect" : "Allow",
"Action" : [
"ecr:GetAuthorizationToken",
"ecr:BatchCheckLayerAvailability",
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage"
],
"Resource" : "arn:aws:ecr:${var.tools-ecr-region}:${var.tools-account-id}:repository/${var.ecr-repository-name}"
}
]
})
}
#################
# ECS Task Role #
#################
resource "aws_iam_role" "ecs-task-role" {
name = "${var.ecs-task-name}-taskRole"
assume_role_policy = jsonencode(
{
Version : "2012-10-17",
Statement : [
{
Action : "sts:AssumeRole",
Principal : {
Service : "ecs-tasks.amazonaws.com"
},
Effect : "Allow"
}
]
})
}
#############################################
# ECS Task Execution Role Policy Attachment #
#############################################
resource "aws_iam_role_policy_attachment" "ecs-task-execution-role-policy-attachment" {
role = aws_iam_role.ecs-task-execution-role.name
policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy"
}