forked from andreugallofre/Capside-Fargate-Blog-Post
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClusterDefinition_Template.json
46 lines (46 loc) · 1.17 KB
/
ClusterDefinition_Template.json
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
{
"Metadata":{
"StackVersion":3
},
"Resources":{
"Cluster":{
"Properties":{
"ClusterName":"BlogPostEcsCluster"
},
"Type":"AWS::ECS::Cluster"
},
"ECSTaskLogGroup":{
"Properties":{
"LogGroupName":"/ecs/Capside-Blog-Post",
"RetentionInDays":5
},
"Type":"AWS::Logs::LogGroup"
},
"ExecutionRole":{
"Properties":{
"AssumeRolePolicyDocument":{
"Statement":[
{
"Action":[
"sts:AssumeRole"
],
"Effect":"Allow",
"Principal":{
"Service":[
"ecs-tasks.amazonaws.com"
]
},
"Sid":""
}
]
},
"ManagedPolicyArns":[
"arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy"
],
"Path":"/",
"RoleName":"ECSRunTaskRole"
},
"Type":"AWS::IAM::Role"
}
}
}