Skip to content

Commit 15c854f

Browse files
committed
docs: 📝 update missing documentation
1 parent 3187522 commit 15c854f

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

fargate-eventbridge-serverless/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Leveraging Fargate for Scheduled Jobs
22

3-
This pattern contains a sample serverless framework template to deploy a scheduled AWS Fargate task using EventBridge running on an Amazon Elastic Container Service (ECS) cluster. The docker image is pushed to Amazon Elastic Container Registry (ECR) using serverless framework template without having to pre-push the image to ECR or another container library. The serverless framework plugin for fargate, `serverless-fargate` is used to deploy tasks on ECS Cluster. This task runs every 10th minute of the hour using Eventbridge Scheduler and a simple file containing JSON is put in S3 bucket.
3+
This pattern contains a sample serverless framework template to deploy a scheduled AWS Fargate task using EventBridge running on an Amazon Elastic Container Service (ECS) cluster. The docker image is pushed to Amazon Elastic Container Registry (ECR) using serverless framework template without having to pre-push the image to ECR or another container library. The serverless framework plugin for fargate, `serverless-fargate` is used to deploy tasks on ECS Cluster. This task runs every 10th minute of the hour using Eventbridge Rule and a simple file containing JSON is put in S3 bucket.
44

55
Important: this application uses various AWS services and there are costs associated with these services after the Free Tier usage - please see the [AWS Pricing page](https://aws.amazon.com/pricing/) for details. You are responsible for any AWS costs incurred. No warranty is implied in this example.
66

@@ -29,6 +29,13 @@ Important: this application uses various AWS services and there are costs associ
2929

3030
1. Open Docker Desktop and keep it running in the background.
3131

32+
1. Install serverless-fargate plugin in dev dependencies:
33+
```
34+
// using yarn
35+
yarn add serverless-fargate --dev
36+
// using npm
37+
npm install serverless-fargate --save-dev
38+
```
3239
1. From the command line, use Serverless Framework to deploy the AWS resources for the pattern as specified in the serverless.yml file:
3340

3441
``` sh

0 commit comments

Comments
 (0)