-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic-example.jsonnet
108 lines (108 loc) · 2.72 KB
/
basic-example.jsonnet
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
104
105
106
107
108
[{
state: {
name: 'fubura-example',
definition: {
StartAt: 'RunTask',
States: {
Fail: {
Type: 'Fail',
},
RunTask: {
End: true,
Parameters: {
Cluster: 'fubura',
EnableExecuteCommand: true,
LaunchType: 'FARGATE',
NetworkConfiguration: {
AwsvpcConfiguration: {
SecurityGroups: [
'sg-00000000000000000',
],
Subnets: [
'subnet-00000000000000000',
'subnet-11111111111111111',
'subnet-22222222222222222',
],
},
},
Overrides: {
ContainerOverrides: [
{
Command: [
'bundle',
'exec',
'rails',
'routes',
],
Name: 'app',
},
],
Cpu: null,
Memory: null,
},
PropagateTags: 'TASK_DEFINITION',
TaskDefinition: 'arn:aws:ecs:us-west-2:123456789012:task-definition/fubura-batch',
},
Resource: 'arn:aws:states:::ecs:runTask.sync',
Retry: [
{
BackoffRate: 3,
ErrorEquals: [
'ECS.AmazonECSException',
],
IntervalSeconds: 5,
MaxAttempts: 4,
},
],
Type: 'Task',
},
},
},
roleArn: 'arn:aws:iam::123456789012:role/fubura_batch',
type: 'STANDARD',
loggingConfiguration: {
level: 'ALL',
includeExecutionData: true,
destinations: [
{
cloudWatchLogsLogGroup: {
logGroupArn: 'arn:aws:logs:us-west-2:123456789012:log-group:/sfn/fubura_batch:*',
},
},
],
},
tracingConfiguration: {
enabled: false,
},
tags: [
{
key: 'Name',
value: 'fubura-example',
},
],
},
schedule: {
groupName: 'fubura-group',
name: 'fubura-example',
state: 'ENABLED',
scheduleExpression: 'rate(10 hours)',
scheduleExpressionTimezone: 'Asia/Tokyo',
flexibleTimeWindow: {
mode: 'OFF',
},
target: {
arn: 'arn:aws:states:us-west-2:123456789012:stateMachine:fubura-example',
roleArn: 'arn:aws:iam::123456789012:role/fubura_batch',
deadLetterConfig: {
arn: 'arn:aws:sqs:us-west-2:123456789012:fubura_batch_dlq',
},
input: '{}',
retryPolicy: {
maximumEventAgeInSeconds: 86400,
maximumRetryAttempts: 0,
},
},
},
deleteAll: false,
deleteSchedule: false,
}]