-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.bicepparam
19 lines (16 loc) · 895 Bytes
/
main.bicepparam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using './main.bicep'
// Specify your BeyondTrust tenant name
param beyondTrustApplianceUrl = 'https://mytenant.beyondtrustcloud.com'
// 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' // 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
}