-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiam-role.yml
50 lines (46 loc) · 1.45 KB
/
iam-role.yml
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
# ------------------------------------------------------------#
# Create Resource
# - IAM Role (ECSTaskRole)
# ------------------------------------------------------------#
AWSTemplateFormatVersion: "2010-09-09"
Description:
IAM Role (ECSTaskRole)
Parameters:
PJPrefix:
Type: String
Default: laravel
ConstraintDescription: Invalid input value for the PJPrefix.
Resources:
ECSTaskRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Sub "${PJPrefix}-ECSTaskRole"
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service: ecs-tasks.amazonaws.com
Action: sts:AssumeRole
Policies:
- PolicyName: !Sub "${PJPrefix}-EcsExecRolePolicy"
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- ssmmessages:CreateControlChannel
- ssmmessages:CreateDataChannel
- ssmmessages:OpenControlChannel
- ssmmessages:OpenDataChannel
Resource: "*"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy
- arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess
Outputs:
ECSTaskRoleArn:
Description: ARN of the ECS Task Role
Value: !GetAtt ECSTaskRole.Arn
Export:
Name: !Sub "${PJPrefix}-ECSTaskRole-arn"