-
Notifications
You must be signed in to change notification settings - Fork 3
/
definition.yaml
103 lines (96 loc) · 2.58 KB
/
definition.yaml
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
96
97
98
99
100
101
102
103
###
AWSTemplateFormatVersion: 2010-09-09
Description: AP Job definitions
###
###---Parameters---
###
Parameters:
APName:
Type: String
Description: AP Job Definition Name
Queue:
Type: String
Description: AP Job Queue Name
CronTime:
Type: String
Description: AP Job Cron Time
###
###---Resources:JobDefinition---
###
Resources:
APJobDefinition:
Type: AWS::Batch::JobDefinition
Properties:
Type: container
JobDefinitionName: !Ref APName
ContainerProperties:
Image: !Sub ${AWS::AccountId}.dkr.ecr.${AWS::Region}.${AWS::URLSuffix}/ap/${APName}:latest
Vcpus: 1
Memory: 1024
JobRoleArn: !GetAtt APJobRole.Arn
Command: []
Environment: []
Ulimits: []
RetryStrategy:
Attempts: 1
#========CloudWatch Rules Schedule========#
Cron:
Type: AWS::Events::Rule
Properties:
Description: !Sub "${APName}-Cron"
ScheduleExpression: !Sub "cron${CronTime}"
State: "ENABLED"
Targets:
- Id: !Sub "${APName}-TriggerBatchAPJob"
Arn: !ImportValue TriggerBatchAPJob
Input: !Sub "{\"jobDefinition\": \"${APName}\", \"jobQueue\": \"${Queue}\"}"
PermissionForTriggerBatchAPJob:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !ImportValue TriggerBatchAPJob
Action: "lambda:InvokeFunction"
Principal: "events.amazonaws.com"
SourceArn: !GetAtt Cron.Arn
APJobRole:
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- ecs-tasks.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: APPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- s3:GetObject
- s3:PutObject
Resource:
Fn::Sub:
- "${APS3Bucket}/*"
- APS3Bucket: !ImportValue APS3Bucket
#========Outputs========#
Outputs:
APJobDefinition:
Description: AP Job Definition
Value: !Ref APJobDefinition
Cron:
Description: AP CloudWatch Rules Schedule
Value: !Ref Cron
CronTime:
Description: AP Job Cron Time
Value: !Ref CronTime
Permission:
Description: AP CloudWatch TriggerBatchAPJob Permission
Value: !Ref PermissionForTriggerBatchAPJob
APJobRole:
Description: AP Job Role
Value: !Ref APJobRole