-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: John Dewey <[email protected]>
- Loading branch information
Showing
2 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,43 @@ | ||
# terraform-azure-enrichment | ||
|
||
Terraform for Corelight's Azure Cloud Enrichment. | ||
|
||
## Getting Started | ||
|
||
Corelight's Azure Cloud Enrichment requires the deployment of an Azure Container App and its | ||
supporting infrastructure to ensure the data in your Corelight cloud sensors are | ||
always up-to-date with the latest state of your cloud resources. | ||
|
||
### Deployment | ||
## Usage | ||
|
||
```terraform | ||
module "enrichment" { | ||
source = "github.com/corelight/terraform-azure-enrichment" | ||
resource_group_name = "<Name of the resource group where resources will be deployed>" | ||
enrichment_storage_account = "<storage account where enrichment data will be centralized>" | ||
enrichment_storage_account_container = "<storage account container that will store the cloud resource data>" | ||
event_grid_system_topic_name = "<name of the event grid system topic>" | ||
location = "<Azure location where resources will be deployed>" | ||
subscription_id = "the ID (UUID) of the Azure Subscription where resources will be deployed>" | ||
tags = { | ||
terraform : true, | ||
example : true, | ||
purpose : "Corelight" | ||
} | ||
} | ||
``` | ||
|
||
## Deployment | ||
|
||
The variables for this module all have default values that can be overwritten | ||
to meet your naming and compliance standards. | ||
to meet your naming and compliance standards. | ||
|
||
Deployment examples can be found [here](examples) | ||
|
||
## License | ||
|
||
The project is licensed under the [MIT][] license. | ||
|
||
[MIT]: LICENSE | ||
[MIT]: LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters