diff --git a/README.md b/README.md index 183a241..278d185 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ```terraform module "enrichment_org_iam" { source = "github.com/corelight/terraform-gcp-enrichment//modules/org_iam" - + organization_id = "987654321" custom_org_role_id = "corelight_enrichment_role" } @@ -17,11 +17,17 @@ module "enrichment" { location = "us-central1" zone = "us-central1-a" - project_id = "project-12345" + project_id = "project-12345" enrichment_bucket_name = "enrichment-data-54321" folder_id = "123456789" # The root folder to enumerate service_account_id = "enrichment-service-account" organization_role_id = module.enrichment_org_iam.custom_org_role_id + + labels = { + terraform : true, + example : true, + purpose : "Corelight" + } } ```