Skip to content

Commit

Permalink
Add labels 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 a2c39d8 commit dbd8ed7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -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"
}
}
```

Expand Down

0 comments on commit dbd8ed7

Please sign in to comment.