Step Functions Workflow: Route S3 Uploads to Lambda or Fargate
Overview
This skill deploys an event-driven workflow using AWS CLI. When a file is uploaded to
an S3 bucket, EventBridge triggers a Step Functions state machine. The state machine
checks the file size and routes processing to either a Lambda function (files ≤ 6 MB)
or a Fargate task (files > 6 MB).
The architecture includes:
- An S3 bucket with EventBridge notifications enabled
- An EventBridge rule that triggers Step Functions on S3 object creation
- A Step Functions state machine with a Choice state for routing
- A Lambda function for processing small files
- An ECS Fargate task for processing large files
- A VPC with two subnets, internet gateway, and security group
- An ECR repository for the Fargate container image
- Scoped IAM roles for Lambda, Step Functions, and ECS tasks
Use this skill when:
- You need to process S3 uploads with different compute based on file size
- You want a serverless workflow that can handle both small and large files
- You need Step Functions orchestration with Lambda and Fargate
Do not use this skill when:
- All files are small enough for Lambda (use S3 → Lambda directly)
- You need real-time streaming (use Kinesis)
- You don't need file-size-based routing
Prerequisites
- AWS CLI v2 — Installed and configured. Verify with
aws sts get-caller-identity.
- Python 3.12 — For the Lambda function runtime.
- Docker — For building and pushing the Fargate container image.
Parameters
- bucket_name (required): Name for the S3 bucket (globally unique, lowercase, 3-63 characters)
- region (required): AWS region for all resources
- ecr_repo_name (required): Name for the ECR repository
- state_machine_name (required): Name for the Step Functions state machine
- kms_key_arn (optional): ARN of a KMS key for CloudWatch Logs encryption. If not provided, create one with
aws kms create-key --description "Key for CloudWatch Logs encryption" --region {region}
Constraints for parameter acquisition:
- You MUST ask for all required parameters upfront in a single prompt
- You MUST support multiple input methods (direct input, file path, URL)
- You MUST confirm successful acquisition of all parameters before proceeding
- You MUST validate that bucket_name follows S3 naming rules
Procedures
Step 0: Verify Dependencies
Constraints:
- You MUST verify the following tools are available: aws-cli, python3 (3.12+), docker
- You MUST inform the user about any missing tools with a clear message
- You MUST ask if the user wants to proceed despite missing tools
- You MUST respect the customer's decision to abort at any point
- You MUST explain to the customer what step is being executed, why, and which tool is being called
Step 1: Retrieve AWS Account ID
Constraints:
- You MUST retrieve the account ID with:
aws sts get-caller-identity --query 'Account' --output text
- You MUST store the result as {account_id} for use in all subsequent steps
- You MUST abort if credentials are not configured
Step 2: Get the Default VPC and Networking
Constraints:
- You MUST retrieve the default VPC ID with:
aws ec2 describe-vpcs --filters Name=isDefault,Values=true --query 'Vpcs[0].VpcId' --output text --region {region}
- If no default VPC exists, inform the user they must create one with
aws ec2 create-default-vpc --region {region} or provide a VPC ID manually
- You MUST retrieve two subnet IDs from the default VPC:
aws ec2 describe-subnets --filters Name=vpc-id,Values={vpc_id} --query 'Subnets[0:2].SubnetId' --output text --region {region}
- You MUST create a security group in the default VPC:
aws ec2 create-security-group --group-name fargate-sg --description "Security group for Fargate tasks" --vpc-id {vpc_id} --region {region}
- You MUST configure security group egress rules to allow only HTTPS and DNS outbound. First revoke the default allow-all egress rule:
aws ec2 revoke-security-group-egress --group-id {sg_id} --ip-permissions IpProtocol=-1,IpRanges='[{CidrIp=0.0.0.0/0}]' --region {region}
Then add scoped rules:
aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol tcp --port 443 --cidr 0.0.0.0/0 --region {region} and
aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol udp --port 53 --cidr 0.0.0.0/0 --region {region}
- You MUST recommend VPC endpoints for S3 and CloudWatch Logs for production workloads to avoid internet-routed traffic and eliminate the need for broad egress rules
- You MUST capture {vpc_id}, {subnet1_id}, {subnet2_id}, and {sg_id} for use in later steps
Step 3: Create the ECR Repository
Constraints:
- You MUST create the repository with:
aws ecr create-repository --repository-name {ecr_repo_name} --region {region}
- You MUST capture the repositoryUri from the response
Step 4: Build and Push the Container Image
Constraints:
You MUST verify Docker is installed by running docker --version. If Docker is not installed, instruct the user to install it from https://docs.docker.com/get-docker/ and abort until it is available
You MUST authenticate Docker with ECR:
aws ecr get-login-password --region {region} | docker login --username AWS --password-stdin {account_id}.dkr.ecr.{region}.amazonaws.com
The Dockerfile and processor code are in scripts/Dockerfile and scripts/fargate_processor.py
You MUST build and push the image from the scripts directory:
cd scripts
docker build --platform linux/amd64 -t {ecr_repo_name} .
docker tag {ecr_repo_name}:latest {account_id}.dkr.ecr.{region}.amazonaws.com/{ecr_repo_name}:latest
docker push {account_id}.dkr.ecr.{region}.amazonaws.com/{ecr_repo_name}:latest
cd ..
Step 5: Create IAM Roles
Follow the detailed instructions in references/iam-roles.md to create all IAM roles (Lambda, ECS task execution, ECS task, Step Functions, and EventBridge roles).
- You MUST wait at least 10 seconds for IAM role propagation
Step 6: Create the Lambda Function
Constraints:
The function code is in scripts/lambda_function.py
You MUST be in the skill root directory before packaging and creating the function
You MUST package it with: python3 -c "import zipfile,io; z=io.BytesIO(); f=zipfile.ZipFile(z,'w'); f.writestr('lambda_function.py', open('scripts/lambda_function.py').read()); f.close(); open('/tmp/lambda_function.zip','wb').write(z.getvalue())"
You MUST create the function with:
aws lambda create-function \
--function-name sfn-file-processor \
--runtime python3.12 \
--handler lambda_function.lambda_handler \
--role arn:aws:iam::{account_id}:role/sfn-lambda-role \
--zip-file fileb:///tmp/lambda_function.zip \
--timeout 60 \
--architectures x86_64 \
--region {region}
You MUST verify the function was created with:
aws lambda get-function --function-name sfn-file-processor --region {region}
Step 7: Create the CloudWatch Log Group
Constraints:
- You MUST create the log group for Fargate:
aws logs create-log-group --log-group-name /StepFunctionFargateTask --region {region}
- You MUST encrypt the log group with a KMS key:
aws logs associate-kms-key --log-group-name /StepFunctionFargateTask --kms-key-arn {kms_key_arn} --region {region}
Step 8: Create the ECS Cluster and Task Definition
Follow the detailed instructions in references/ecs-task-definition.md to create the ECS cluster and register the Fargate task definition.
- You MUST capture the task definition ARN from the response
Step 9: Create the S3 Bucket with EventBridge Notifications
Constraints:
- You MUST create the bucket with:
aws s3api create-bucket --bucket {bucket_name} --region {region} --create-bucket-configuration LocationConstraint={region}
- You MUST NOT include
--create-bucket-configuration if region is us-east-1
- You MUST enable EventBridge notifications on the bucket:
aws s3api put-bucket-notification-configuration --bucket {bucket_name} --notification-configuration '{"EventBridgeConfiguration": {}}' --region {region}
- You MUST enable default encryption on the bucket:
aws s3api put-bucket-encryption --bucket {bucket_name} --server-side-encryption-configuration '{"Rules":[{"ApplyServerSideEncryptionByDefault":{"SSEAlgorithm":"aws:kms"}}]}' --region {region}
Step 10: Create the Step Functions State Machine
Constraints:
The state machine definition is in scripts/statemachine.asl.json
You MUST create a working copy and replace all placeholders:
sed -e 's|${LambdaFunction}|arn:aws:lambda:{region}:{account_id}:function:sfn-file-processor|g' \
-e 's|${Cluster}|arn:aws:ecs:{region}:{account_id}:cluster/sfn-cluster|g' \
-e 's|${TaskDefinition}|{task_definition_arn}|g' \
-e 's|${Subnet1}|{subnet1_id}|g' \
-e 's|${Subnet2}|{subnet2_id}|g' \
-e 's|${SecurityGroup}|{sg_id}|g' \
scripts/statemachine.asl.json > /tmp/statemachine.asl.json
You MUST create the state machine with:
aws stepfunctions create-state-machine \
--name {state_machine_name} \
--definition file:///tmp/statemachine.asl.json \
--role-arn arn:aws:iam::{account_id}:role/sfn-state-machine-role \
--type STANDARD \
--region {region}
You MUST capture the stateMachineArn from the response
Step 11: Create the EventBridge Rule
Constraints:
You MUST create the EventBridge rule to trigger on S3 object creation:
aws events put-rule \
--name s3-to-stepfunctions \
--event-pattern '{
"source": ["aws.s3"],
"detail-type": ["Object Created"],
"detail": {
"bucket": {
"name": ["{bucket_name}"]
}
}
}' \
--region {region}
You MUST add the state machine as a target:
aws events put-targets \
--rule s3-to-stepfunctions \
--targets '[{
"Id": "StepFunctionsTarget",
"Arn": "{state_machine_arn}",
"RoleArn": "arn:aws:iam::{account_id}:role/sfn-eventbridge-role"
}]' \
--region {region}
Step 12: Configure Monitoring
Constraints:
You MUST create a Dead Letter Queue for failed EventBridge invocations:
aws sqs create-queue --queue-name s3-to-stepfunctions-dlq --region {region}
You MUST update the EventBridge target to attach the DLQ:
aws events put-targets \
--rule s3-to-stepfunctions \
--targets '[{
"Id": "StepFunctionsTarget",
"Arn": "{state_machine_arn}",
"RoleArn": "arn:aws:iam::{account_id}:role/sfn-eventbridge-role",
"DeadLetterConfig": {
"Arn": "arn:aws:sqs:{region}:{account_id}:s3-to-stepfunctions-dlq"
}
}]' \
--region {region}
You MUST create a CloudWatch alarm for Step Functions execution failures:
aws cloudwatch put-metric-alarm --alarm-name sfn-execution-failures --metric-name ExecutionsFailed --namespace AWS/States --statistic Sum --period 300 --threshold 1 --comparison-operator GreaterThanOrEqualToThreshold --evaluation-periods 1 --dimensions Name=StateMachineArn,Value={state_machine_arn} --region {region}
Step 13: Validate
Constraints:
You MUST test with a small file (< 6 MB) to verify Lambda processing:
echo 'test data' > /tmp/small-file.txt
aws s3 cp /tmp/small-file.txt s3://{bucket_name}/small-file.txt --region {region}
You MUST wait 15 seconds then check the Step Functions execution:
aws stepfunctions list-executions --state-machine-arn {state_machine_arn} --region {region}
You MUST verify the execution succeeded and routed to Lambda
You MUST provide a summary of all created resources including: VPC ID, subnet IDs, security group ID, ECR repo URI, ECS cluster ARN, task definition ARN, Lambda function ARN, state machine ARN, bucket name, and EventBridge rule name
Troubleshooting
EventBridge rule not triggering
- Verify EventBridge notifications are enabled on the bucket:
aws s3api get-bucket-notification-configuration --bucket {bucket_name}
- Verify the rule exists:
aws events describe-rule --name s3-to-stepfunctions --region {region}
- Check that the target has the correct state machine ARN and role
Step Functions execution fails at Fargate task
- Verify the container image exists in ECR:
aws ecr describe-images --repository-name {ecr_repo_name} --region {region}
- Check that the subnets have internet access (route table with IGW)
- Verify the security group allows outbound traffic
- Check CloudWatch Logs at
/StepFunctionFargateTask
Lambda invocation fails
- Check CloudWatch Logs:
aws logs tail /aws/lambda/sfn-file-processor --region {region}
- Verify the Step Functions role has
lambda:InvokeFunction permission
IAM PassRole errors
- The Step Functions role must have
iam:PassRole for both the ECS execution role and task role ARNs
Fargate task stuck in PROVISIONING
- Verify the subnets have auto-assign public IP enabled
- Verify the internet gateway is attached and route table has 0.0.0.0/0 route
Security Considerations
- Fargate tasks with public IPs are exposed to the internet. Revoke the default allow-all egress rule and configure scoped egress:
aws ec2 revoke-security-group-egress --group-id {sg_id} --ip-permissions IpProtocol=-1,IpRanges='[{CidrIp=0.0.0.0/0}]' then add aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol tcp --port 443 --cidr 0.0.0.0/0 and aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol udp --port 53 --cidr 0.0.0.0/0. For production, consider using VPC endpoints for S3 and CloudWatch Logs instead of internet-routed traffic.
- Scan container images for vulnerabilities before pushing to ECR. Enable ECR image scanning with:
aws ecr put-image-scanning-configuration --repository-name {ecr_repo_name} --image-scanning-configuration scanOnPush=true --region {region}
- Use IAM roles for credentials — never hardcode access keys in container code.
- Enable encryption at rest for the S3 bucket:
aws s3api put-bucket-encryption --bucket {bucket_name} --server-side-encryption-configuration '{"Rules":[{"ApplyServerSideEncryptionByDefault":{"SSEAlgorithm":"aws:kms"}}]}'
- Enable CloudWatch Logs encryption for Fargate container logs:
aws logs associate-kms-key --log-group-name /StepFunctionFargateTask --kms-key-arn <KMS_KEY_ARN>
- Configure a Dead Letter Queue on the EventBridge rule for failed invocations
- Set up CloudWatch alarms on Step Functions execution failures for operational visibility
Version information
- AWS CLI: 2.x
- Python runtime: 3.12
- Last validated: 2026-04-27
Additional Resources
1---2name: processing-s3-uploads-with-step-functions3description: Deploy an event-driven workflow that routes S3 uploads to either Lambda or Fargate via Step Functions based on file size. Uses EventBridge to trigger a Step Functions state machine when objects are uploaded to S3. Small files are processed by Lambda, large files by a Fargate task. Includes VPC, ECR repository, ECS cluster, and scoped IAM roles. Trigger keywords: Step Functions, Fargate, Lambda, S3 event, EventBridge, ECS, ECR, file processing, workflow orchestration, serverless.4---5
6# Step Functions Workflow: Route S3 Uploads to Lambda or Fargate
7
8## Overview
9
10This skill deploys an event-driven workflow using AWS CLI. When a file is uploaded to
11an S3 bucket, EventBridge triggers a Step Functions state machine. The state machine
12checks the file size and routes processing to either a Lambda function (files ≤ 6 MB)
13or a Fargate task (files > 6 MB).
14
15The architecture includes:
16
17- An S3 bucket with EventBridge notifications enabled
18- An EventBridge rule that triggers Step Functions on S3 object creation
19- A Step Functions state machine with a Choice state for routing
20- A Lambda function for processing small files
21- An ECS Fargate task for processing large files
22- A VPC with two subnets, internet gateway, and security group
23- An ECR repository for the Fargate container image
24- Scoped IAM roles for Lambda, Step Functions, and ECS tasks
25
26Use this skill when:
27
28- You need to process S3 uploads with different compute based on file size
29- You want a serverless workflow that can handle both small and large files
30- You need Step Functions orchestration with Lambda and Fargate
31
32Do not use this skill when:
33
34- All files are small enough for Lambda (use S3 → Lambda directly)
35- You need real-time streaming (use Kinesis)
36- You don't need file-size-based routing
37
38## Prerequisites
39
401. **AWS CLI v2** — Installed and configured. Verify with `aws sts get-caller-identity`.
412. **Python 3.12** — For the Lambda function runtime.
423. **Docker** — For building and pushing the Fargate container image.
43
44## Parameters
45
46- bucket_name (required): Name for the S3 bucket (globally unique, lowercase, 3-63 characters)
47- region (required): AWS region for all resources
48- ecr_repo_name (required): Name for the ECR repository
49- state_machine_name (required): Name for the Step Functions state machine
50- kms_key_arn (optional): ARN of a KMS key for CloudWatch Logs encryption. If not provided, create one with `aws kms create-key --description "Key for CloudWatch Logs encryption" --region {region}`
51
52Constraints for parameter acquisition:
53
54- You MUST ask for all required parameters upfront in a single prompt
55- You MUST support multiple input methods (direct input, file path, URL)
56- You MUST confirm successful acquisition of all parameters before proceeding
57- You MUST validate that bucket_name follows S3 naming rules
58
59## Procedures
60
61### Step 0: Verify Dependencies
62
63Constraints:
64
65- You MUST verify the following tools are available: aws-cli, python3 (3.12+), docker
66- You MUST inform the user about any missing tools with a clear message
67- You MUST ask if the user wants to proceed despite missing tools
68- You MUST respect the customer's decision to abort at any point
69- You MUST explain to the customer what step is being executed, why, and which tool is being called
70
71### Step 1: Retrieve AWS Account ID
72
73Constraints:
74
75- You MUST retrieve the account ID with: `aws sts get-caller-identity --query 'Account' --output text`
76- You MUST store the result as {account_id} for use in all subsequent steps
77- You MUST abort if credentials are not configured
78
79### Step 2: Get the Default VPC and Networking
80
81Constraints:
82
83- You MUST retrieve the default VPC ID with:
84 `aws ec2 describe-vpcs --filters Name=isDefault,Values=true --query 'Vpcs[0].VpcId' --output text --region {region}`
85- If no default VPC exists, inform the user they must create one with `aws ec2 create-default-vpc --region {region}` or provide a VPC ID manually
86- You MUST retrieve two subnet IDs from the default VPC:
87 `aws ec2 describe-subnets --filters Name=vpc-id,Values={vpc_id} --query 'Subnets[0:2].SubnetId' --output text --region {region}`
88- You MUST create a security group in the default VPC:
89 `aws ec2 create-security-group --group-name fargate-sg --description "Security group for Fargate tasks" --vpc-id {vpc_id} --region {region}`
90- You MUST configure security group egress rules to allow only HTTPS and DNS outbound. First revoke the default allow-all egress rule:
91 `aws ec2 revoke-security-group-egress --group-id {sg_id} --ip-permissions IpProtocol=-1,IpRanges='[{CidrIp=0.0.0.0/0}]' --region {region}`
92 Then add scoped rules:
93 `aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol tcp --port 443 --cidr 0.0.0.0/0 --region {region}` and
94 `aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol udp --port 53 --cidr 0.0.0.0/0 --region {region}`
95- You MUST recommend VPC endpoints for S3 and CloudWatch Logs for production workloads to avoid internet-routed traffic and eliminate the need for broad egress rules
96- You MUST capture {vpc_id}, {subnet1_id}, {subnet2_id}, and {sg_id} for use in later steps
97
98### Step 3: Create the ECR Repository
99
100Constraints:
101
102- You MUST create the repository with:
103 `aws ecr create-repository --repository-name {ecr_repo_name} --region {region}`
104- You MUST capture the repositoryUri from the response
105
106### Step 4: Build and Push the Container Image
107
108Constraints:
109
110- You MUST verify Docker is installed by running `docker --version`. If Docker is not installed, instruct the user to install it from https://docs.docker.com/get-docker/ and abort until it is available
111- You MUST authenticate Docker with ECR:
112 `aws ecr get-login-password --region {region} | docker login --username AWS --password-stdin {account_id}.dkr.ecr.{region}.amazonaws.com`
113- The Dockerfile and processor code are in `scripts/Dockerfile` and `scripts/fargate_processor.py`
114- You MUST build and push the image from the scripts directory:
115
116 ```
117 cd scripts
118 docker build --platform linux/amd64 -t {ecr_repo_name} .
119 docker tag {ecr_repo_name}:latest {account_id}.dkr.ecr.{region}.amazonaws.com/{ecr_repo_name}:latest
120 docker push {account_id}.dkr.ecr.{region}.amazonaws.com/{ecr_repo_name}:latest
121 cd ..
122 ```
123
124### Step 5: Create IAM Roles
125
126Follow the detailed instructions in `references/iam-roles.md` to create all IAM roles (Lambda, ECS task execution, ECS task, Step Functions, and EventBridge roles).
127
128- You MUST wait at least 10 seconds for IAM role propagation
129
130### Step 6: Create the Lambda Function
131
132Constraints:
133
134- The function code is in `scripts/lambda_function.py`
135- You MUST be in the skill root directory before packaging and creating the function
136- You MUST package it with: `python3 -c "import zipfile,io; z=io.BytesIO(); f=zipfile.ZipFile(z,'w'); f.writestr('lambda_function.py', open('scripts/lambda_function.py').read()); f.close(); open('/tmp/lambda_function.zip','wb').write(z.getvalue())"`
137- You MUST create the function with:
138
139 ```
140 aws lambda create-function \
141 --function-name sfn-file-processor \
142 --runtime python3.12 \
143 --handler lambda_function.lambda_handler \
144 --role arn:aws:iam::{account_id}:role/sfn-lambda-role \
145 --zip-file fileb:///tmp/lambda_function.zip \
146 --timeout 60 \
147 --architectures x86_64 \
148 --region {region}
149 ```
150
151- You MUST verify the function was created with:
152 `aws lambda get-function --function-name sfn-file-processor --region {region}`
153
154### Step 7: Create the CloudWatch Log Group
155
156Constraints:
157
158- You MUST create the log group for Fargate:
159 `aws logs create-log-group --log-group-name /StepFunctionFargateTask --region {region}`
160- You MUST encrypt the log group with a KMS key:
161 `aws logs associate-kms-key --log-group-name /StepFunctionFargateTask --kms-key-arn {kms_key_arn} --region {region}`
162
163### Step 8: Create the ECS Cluster and Task Definition
164
165Follow the detailed instructions in `references/ecs-task-definition.md` to create the ECS cluster and register the Fargate task definition.
166
167- You MUST capture the task definition ARN from the response
168
169### Step 9: Create the S3 Bucket with EventBridge Notifications
170
171Constraints:
172
173- You MUST create the bucket with:
174 `aws s3api create-bucket --bucket {bucket_name} --region {region} --create-bucket-configuration LocationConstraint={region}`
175- You MUST NOT include `--create-bucket-configuration` if region is us-east-1
176- You MUST enable EventBridge notifications on the bucket:
177 `aws s3api put-bucket-notification-configuration --bucket {bucket_name} --notification-configuration '{"EventBridgeConfiguration": {}}' --region {region}`
178- You MUST enable default encryption on the bucket:
179 `aws s3api put-bucket-encryption --bucket {bucket_name} --server-side-encryption-configuration '{"Rules":[{"ApplyServerSideEncryptionByDefault":{"SSEAlgorithm":"aws:kms"}}]}' --region {region}`
180
181### Step 10: Create the Step Functions State Machine
182
183Constraints:
184
185- The state machine definition is in `scripts/statemachine.asl.json`
186- You MUST create a working copy and replace all placeholders:
187
188 ```
189 sed -e 's|${LambdaFunction}|arn:aws:lambda:{region}:{account_id}:function:sfn-file-processor|g' \
190 -e 's|${Cluster}|arn:aws:ecs:{region}:{account_id}:cluster/sfn-cluster|g' \
191 -e 's|${TaskDefinition}|{task_definition_arn}|g' \
192 -e 's|${Subnet1}|{subnet1_id}|g' \
193 -e 's|${Subnet2}|{subnet2_id}|g' \
194 -e 's|${SecurityGroup}|{sg_id}|g' \
195 scripts/statemachine.asl.json > /tmp/statemachine.asl.json
196 ```
197
198- You MUST create the state machine with:
199
200 ```
201 aws stepfunctions create-state-machine \
202 --name {state_machine_name} \
203 --definition file:///tmp/statemachine.asl.json \
204 --role-arn arn:aws:iam::{account_id}:role/sfn-state-machine-role \
205 --type STANDARD \
206 --region {region}
207 ```
208
209- You MUST capture the stateMachineArn from the response
210
211### Step 11: Create the EventBridge Rule
212
213Constraints:
214
215- You MUST create the EventBridge rule to trigger on S3 object creation:
216
217 ```
218 aws events put-rule \
219 --name s3-to-stepfunctions \
220 --event-pattern '{
221 "source": ["aws.s3"],
222 "detail-type": ["Object Created"],
223 "detail": {
224 "bucket": {
225 "name": ["{bucket_name}"]
226 }
227 }
228 }' \
229 --region {region}
230 ```
231
232- You MUST add the state machine as a target:
233
234 ```
235 aws events put-targets \
236 --rule s3-to-stepfunctions \
237 --targets '[{
238 "Id": "StepFunctionsTarget",
239 "Arn": "{state_machine_arn}",
240 "RoleArn": "arn:aws:iam::{account_id}:role/sfn-eventbridge-role"
241 }]' \
242 --region {region}
243 ```
244
245### Step 12: Configure Monitoring
246
247Constraints:
248
249- You MUST create a Dead Letter Queue for failed EventBridge invocations:
250 `aws sqs create-queue --queue-name s3-to-stepfunctions-dlq --region {region}`
251- You MUST update the EventBridge target to attach the DLQ:
252
253 ```
254 aws events put-targets \
255 --rule s3-to-stepfunctions \
256 --targets '[{
257 "Id": "StepFunctionsTarget",
258 "Arn": "{state_machine_arn}",
259 "RoleArn": "arn:aws:iam::{account_id}:role/sfn-eventbridge-role",
260 "DeadLetterConfig": {
261 "Arn": "arn:aws:sqs:{region}:{account_id}:s3-to-stepfunctions-dlq"
262 }
263 }]' \
264 --region {region}
265 ```
266
267- You MUST create a CloudWatch alarm for Step Functions execution failures:
268 `aws cloudwatch put-metric-alarm --alarm-name sfn-execution-failures --metric-name ExecutionsFailed --namespace AWS/States --statistic Sum --period 300 --threshold 1 --comparison-operator GreaterThanOrEqualToThreshold --evaluation-periods 1 --dimensions Name=StateMachineArn,Value={state_machine_arn} --region {region}`
269
270### Step 13: Validate
271
272Constraints:
273
274- You MUST test with a small file (< 6 MB) to verify Lambda processing:
275
276 ```
277 echo 'test data' > /tmp/small-file.txt
278 aws s3 cp /tmp/small-file.txt s3://{bucket_name}/small-file.txt --region {region}
279 ```
280
281- You MUST wait 15 seconds then check the Step Functions execution:
282 `aws stepfunctions list-executions --state-machine-arn {state_machine_arn} --region {region}`
283- You MUST verify the execution succeeded and routed to Lambda
284- You MUST provide a summary of all created resources including: VPC ID, subnet IDs, security group ID, ECR repo URI, ECS cluster ARN, task definition ARN, Lambda function ARN, state machine ARN, bucket name, and EventBridge rule name
285
286## Troubleshooting
287
288### EventBridge rule not triggering
289
290- Verify EventBridge notifications are enabled on the bucket: `aws s3api get-bucket-notification-configuration --bucket {bucket_name}`
291- Verify the rule exists: `aws events describe-rule --name s3-to-stepfunctions --region {region}`
292- Check that the target has the correct state machine ARN and role
293
294### Step Functions execution fails at Fargate task
295
296- Verify the container image exists in ECR: `aws ecr describe-images --repository-name {ecr_repo_name} --region {region}`
297- Check that the subnets have internet access (route table with IGW)
298- Verify the security group allows outbound traffic
299- Check CloudWatch Logs at `/StepFunctionFargateTask`
300
301### Lambda invocation fails
302
303- Check CloudWatch Logs: `aws logs tail /aws/lambda/sfn-file-processor --region {region}`
304- Verify the Step Functions role has `lambda:InvokeFunction` permission
305
306### IAM PassRole errors
307
308- The Step Functions role must have `iam:PassRole` for both the ECS execution role and task role ARNs
309
310### Fargate task stuck in PROVISIONING
311
312- Verify the subnets have auto-assign public IP enabled
313- Verify the internet gateway is attached and route table has 0.0.0.0/0 route
314
315## Security Considerations
316
317- Fargate tasks with public IPs are exposed to the internet. Revoke the default allow-all egress rule and configure scoped egress: `aws ec2 revoke-security-group-egress --group-id {sg_id} --ip-permissions IpProtocol=-1,IpRanges='[{CidrIp=0.0.0.0/0}]'` then add `aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol tcp --port 443 --cidr 0.0.0.0/0` and `aws ec2 authorize-security-group-egress --group-id {sg_id} --protocol udp --port 53 --cidr 0.0.0.0/0`. For production, consider using VPC endpoints for S3 and CloudWatch Logs instead of internet-routed traffic.
318- Scan container images for vulnerabilities before pushing to ECR. Enable ECR image scanning with: `aws ecr put-image-scanning-configuration --repository-name {ecr_repo_name} --image-scanning-configuration scanOnPush=true --region {region}`
319- Use IAM roles for credentials — never hardcode access keys in container code.
320- Enable encryption at rest for the S3 bucket: `aws s3api put-bucket-encryption --bucket {bucket_name} --server-side-encryption-configuration '{"Rules":[{"ApplyServerSideEncryptionByDefault":{"SSEAlgorithm":"aws:kms"}}]}'`
321- Enable CloudWatch Logs encryption for Fargate container logs: `aws logs associate-kms-key --log-group-name /StepFunctionFargateTask --kms-key-arn <KMS_KEY_ARN>`
322- Configure a Dead Letter Queue on the EventBridge rule for failed invocations
323- Set up CloudWatch alarms on Step Functions execution failures for operational visibility
324
325## Version information
326
327- **AWS CLI**: 2.x
328- **Python runtime**: 3.12
329- **Last validated**: 2026-04-27
330
331## Additional Resources
332
333- [Step Functions developer guide](https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html)
334- [EventBridge S3 events](https://docs.aws.amazon.com/AmazonS3/latest/userguide/EventBridge.html)
335- [Fargate task definitions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definitions.html)
336- [ECR pushing images](https://docs.aws.amazon.com/AmazonECR/latest/userguide/docker-push-ecr-image.html)
337- [Step Functions Fargate integration](https://docs.aws.amazon.com/step-functions/latest/dg/connect-ecs.html)