-
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.
Update README.md and main.bicepparam for clarity
README.md has been enhanced with new sections: "Description," "What It Provides," and "Custom Tables." The "Install" section now offers a detailed step-by-step guide, and "Resources Deployed" has been renamed to "This deployment will create" with a more detailed list. The main.bicepparam file now includes comments for better clarity, explaining the `datacollection` and `functionConfig` parameters.
- Loading branch information
Showing
2 changed files
with
47 additions
and
14 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
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,14 +1,19 @@ | ||
using './main.bicep' | ||
|
||
// Specify your BeyondTrust tenant name | ||
param beyondTrustTenant = 'mytenant' | ||
param datacollection = { | ||
ruleName: 'dcr-beyondtrust' | ||
endpointName: 'bt-endpoint' | ||
workspaceName: 'LAW-BeyondTrust' | ||
|
||
// Data collection configuration | ||
param datacollection = { | ||
ruleName: 'dcr-beyondtrust' // Name of the Data Collection Rule | ||
endpointName: 'bt-endpoint' // Name of the Data Collection Endpoint | ||
workspaceName: 'LAW-BeyondTrust' // Name of the Log Analytics Workspace | ||
} | ||
|
||
// Azure Function App configuration | ||
param functionConfig = { | ||
name: 'func-btconnect' | ||
keyvaultName: 'btvault' | ||
keyvaultSecretName: 'BeyondTrustAPI' | ||
container: 'frodehus/beyondtrustconnector:latest' | ||
name: 'func-btconnect' // Name of the Function App | ||
keyvaultName: 'btvault' // Name of the Key Vault containing the API credentials | ||
keyvaultSecretName: 'BeyondTrustAPI' // Name of the secret in Key Vault with BeyondTrust API credentials | ||
container: 'frodehus/beyondtrustconnector:latest' // Docker image for the Function App | ||
} |