From 7b71fd77fa3c504f7f7d0adc44d04aa370707a21 Mon Sep 17 00:00:00 2001 From: John Dewey Date: Thu, 6 Jun 2024 10:23:35 -0700 Subject: [PATCH] Add tags to the README's usage --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8c1ab36..bc1e10a 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -85,4 +92,4 @@ Deployment examples can be found [here](examples) The project is licensed under the [MIT][] license. -[MIT]: LICENSE \ No newline at end of file +[MIT]: LICENSE