Skip to content

Commit

Permalink
Add tags to the README's usage
Browse files Browse the repository at this point in the history
  • Loading branch information
John Dewey committed Jun 6, 2024
1 parent b0a74a9 commit 7b71fd7
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,23 @@ module "enrichment" {
corelight_cloud_enrichment_image = "123456789111.dkr.ecr.us-east-1.amazonaws.com/corelight-sensor-enrichment-aws"
corelight_cloud_enrichment_image_tag = "0.1.0"
enrichment_bucket_name = "corelight-enrichment"
tags = {
terraform : true,
example : true,
purpose : "Corelight"
}
}
```

## Preparation

Image based Lambdas must be deployed from a private Elastic Container Registry (ECR)
repository and therefore the data collection serverless container image provided by
Image based Lambdas must be deployed from a private Elastic Container Registry (ECR)
repository and therefore the data collection serverless container image provided by
Corelight must be copied from Dockerhub and pushed to your own ECR repository.

#### Copying the Corelight image

Log into the destination ECR

```bash
Expand Down Expand Up @@ -49,7 +56,7 @@ docker pull $SRC_IMAGE
# Copy Image to ECR
skopeo copy docker://$SRC_IMAGE docker://$DST_IMAGE --dest-tls-verify
```
If you would prefer not to use Skopeo then the image will need to be pulled, tagged, and pushed
If you would prefer not to use Skopeo then the image will need to be pulled, tagged, and pushed
to ECR manually.

```bash
Expand Down Expand Up @@ -85,4 +92,4 @@ Deployment examples can be found [here](examples)

The project is licensed under the [MIT][] license.

[MIT]: LICENSE
[MIT]: LICENSE

0 comments on commit 7b71fd7

Please sign in to comment.