cdk-lambda-fleet
Advanced tools
Comparing version 1.3.1 to 1.3.2
{ | ||
"name": "cdk-lambda-fleet", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Deploy multiple AWS Lambda functions as docker images using AWS Cloud Development Kit", | ||
@@ -14,3 +14,3 @@ "main": "aws/constructs/LambdaFleet.js", | ||
}, | ||
"tags": [ | ||
"keywords": [ | ||
"aws", | ||
@@ -33,6 +33,6 @@ "aws-cdk", | ||
"devDependencies": { | ||
"@aws-cdk/core": "1.76.0", | ||
"@aws-cdk/assert": "1.76.0", | ||
"@aws-cdk/aws-ecr": "^1.76.0", | ||
"@aws-cdk/aws-lambda": "^1.76.0", | ||
"@aws-cdk/core": "1.76.0", | ||
"@types/camelcase": "^5.2.0", | ||
@@ -39,0 +39,0 @@ "@types/jest": "^26.0.10", |
@@ -32,3 +32,3 @@ # AWS CDK: Lambda Fleet | ||
Using the **AWS CDK**, a docker image will be created and deployed to **Amazon ECR** for every folder in `src/`. After uploading the image, an **AWS Lambda** will be created or updated to use the latest image. Run `yarn deploy` to deploy all functions and output the function's arn. | ||
Using the **AWS CDK**, a docker image will be created and deployed to **Amazon ECR** for every folder in `src/`. After uploading the image, an **AWS Lambda** will be created or updated to use the latest image. | ||
@@ -39,2 +39,6 @@ ## CDK Construct | ||
```bash | ||
$ > yarn install cdk-lambda-fleet | ||
``` | ||
```typescript | ||
@@ -51,3 +55,3 @@ import * as path from "path"; | ||
new LambdaFleet(this, "Fleet", { | ||
path: path.resolve(__dirname, "../../src"), | ||
path: path.resolve(__dirname, "../src"), | ||
}); | ||
@@ -54,0 +58,0 @@ } |
80
10823