Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved tags outside of optional section in README #6

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Terraform for Corelight's Azure Cloud Sensor Deployment.
<img src="docs/overview.svg" alt="overview">

## Usage

```terraform
module "sensor" {
source = "github.com/corelight/terraform-azure-sensor"
Expand All @@ -19,14 +20,15 @@ module "sensor" {
community_string = "<the community string (api string) often times referenced by Fleet>"
sensor_ssh_public_key = "<path to ssh public key>"

# (Optional) Cloud Enrichment Variables
enrichment_storage_account_name = "<name of the enrichment storage account>"
enrichment_storage_container_name = "<name of the enrichment container in the storage account>"
tags = {
foo: bar,
terraform: true,
purpose: Corelight
}

# (Optional) Cloud Enrichment Variables
enrichment_storage_account_name = "<name of the enrichment storage account>"
enrichment_storage_container_name = "<name of the enrichment container in the storage account>"
}
```

Expand Down