forked from confluentinc/genai-product-review-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep_functions.tf
231 lines (216 loc) · 6.4 KB
/
step_functions.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
############### STEP FUNCTION CONFIGURATION FOR VALID REVIEWS ###########################
# Define the IAM Role for the Step Function
resource "aws_iam_role" "valid_reviews_step_function_role" {
name = "StepFunctions-confluent-mongo-aws-state-function-role"
assume_role_policy = jsonencode({
Version = "2012-10-17",
Statement = [
{
Effect = "Allow",
Principal = {
Service = "states.amazonaws.com"
},
Action = "sts:AssumeRole"
}
]
})
}
# Attach necessary policies to the Step Function role
resource "aws_iam_policy_attachment" "step_function_policy_attachment" {
name = "step-function-policy-attachment"
roles = [aws_iam_role.valid_reviews_step_function_role.name]
policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaRole"
}
# Define the Step Function state machine for Valid Reviews
resource "aws_sfn_state_machine" "valid_reviews_step_function" {
name = "valid-reviews-step-function"
role_arn = aws_iam_role.valid_reviews_step_function_role.arn
definition = jsonencode({
Comment = "Step Function to invoke Lambda 1 every 5 seconds indefinitely",
StartAt = "InvokeLambda",
States = {
InvokeLambda = {
Type = "Task",
Resource = aws_lambda_function.valid_reviews.arn,
Next = "WaitState",
Retry = [
{
ErrorEquals = ["States.ALL"],
IntervalSeconds = 5,
MaxAttempts = 3,
BackoffRate = 2
}
],
Catch = [
{
ErrorEquals = ["States.ALL"],
Next = "WaitState"
}
]
},
WaitState = {
Type = "Wait",
Seconds = 5,
Next = "CheckForEnd"
},
CheckForEnd = {
Type = "Choice",
Choices = [
{
Variable = "$.continue",
BooleanEquals = true,
Next = "InvokeLambda"
}
],
Default = "EndState"
},
EndState = {
Type = "Succeed"
}
}
})
}
############### STEP FUNCTION CONFIGURATION FOR INVALID REVIEWS ###########################
# Define the IAM Role for the Step Function
resource "aws_iam_role" "static_fake_reviews_step_function_role" {
name = "static-fake-reviews-step-function-role"
assume_role_policy = jsonencode({
Version = "2012-10-17",
Statement = [
{
Effect = "Allow",
Principal = {
Service = "states.amazonaws.com"
},
Action = "sts:AssumeRole"
}
]
})
}
# Attach necessary policies to the Step Function role
resource "aws_iam_policy_attachment" "static_fake_reviews_step_function_role_policy_attachment" {
name = "step-function-policy-attachment-2"
roles = [aws_iam_role.static_fake_reviews_step_function_role.name]
policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaRole"
}
# Define the Step Function state machine for Invalid Reviews (State Fake Reviews)
resource "aws_sfn_state_machine" "confluent_mongo_aws_state_function_2" {
name = "confluent-mongo-aws-state-function-2"
role_arn = aws_iam_role.static_fake_reviews_role.arn
definition = jsonencode({
Comment = "Step Function to invoke Lambda 2 every 3 minutes indefinitely",
StartAt = "InvokeLambda",
States = {
InvokeLambda = {
Type = "Task",
Resource = aws_lambda_function.static_fake_reviews.arn,
Next = "WaitState",
Retry = [
{
ErrorEquals = ["States.ALL"],
IntervalSeconds = 5,
MaxAttempts = 3,
BackoffRate = 2
}
],
Catch = [
{
ErrorEquals = ["States.ALL"],
Next = "WaitState"
}
]
},
WaitState = {
Type = "Wait",
Seconds = 180,
Next = "CheckForEnd"
},
CheckForEnd = {
Type = "Choice",
Choices = [
{
Variable = "$.continue",
BooleanEquals = true,
Next = "InvokeLambda"
}
],
Default = "EndState"
},
EndState = {
Type = "Succeed"
}
}
})
}
############### STEP FUNCTION CONFIGURATION FOR STATIC FAKE REVIEWS ###########################
# Define the IAM Role for the third Step Function
resource "aws_iam_role" "review_bombing_step_function_role" {
name = "review_bombing_step_function_role"
assume_role_policy = jsonencode({
Version = "2012-10-17",
Statement = [
{
Effect = "Allow",
Principal = {
Service = "states.amazonaws.com"
},
Action = "sts:AssumeRole"
}
]
})
}
# Attach necessary policies to the third Step Function role
resource "aws_iam_policy_attachment" "review_bombing_step_function_role_step_function_policy_attachment" {
name = "step-function-policy-attachment-3"
roles = [aws_iam_role.review_bombing_step_function_role.name]
policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaRole"
}
# Define the Step Function state machine for Lambda 3 (Static Fake Reviews)
resource "aws_sfn_state_machine" "review_bombing_step_function" {
name = "confluent-mongo-aws-state-function-3"
role_arn = aws_iam_role.review_bombing_step_function_role.arn
definition = jsonencode({
Comment = "Step Function to invoke Lambda 3 every 25 seconds indefinitely",
StartAt = "InvokeLambda",
States = {
InvokeLambda = {
Type = "Task",
Resource = aws_lambda_function.review_bombing.arn,
Next = "WaitState",
Retry = [
{
ErrorEquals = ["States.ALL"],
IntervalSeconds = 5,
MaxAttempts = 3,
BackoffRate = 2
}
],
Catch = [
{
ErrorEquals = ["States.ALL"],
Next = "WaitState"
}
]
},
WaitState = {
Type = "Wait",
Seconds = 25,
Next = "CheckForEnd"
},
CheckForEnd = {
Type = "Choice",
Choices = [
{
Variable = "$.continue",
BooleanEquals = true,
Next = "InvokeLambda"
}
],
Default = "EndState"
},
EndState = {
Type = "Succeed"
}
}
})
}