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

Dataminr azure deploy tool tip changes #11351

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,82 +8,85 @@
"maxLength": 11,
"type": "string"
},
"BaseURL": {
"WorkspaceID": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter baseurl for your Dataminr account.(e.g. https://gateway.dataminr.com/)"
"description": "Enter Workspace ID of log analytics Workspace"
}
},
"ClientId":{
"type": "string",
"WorkspaceKey": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Enter your Dataminr account clientid."
"description": "Enter Primary Key of log analytics Workspace"
}
},
"ClientSecret":{
"type": "securestring",
"DataminrBaseURL": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter your Dataminr account clientsecret."
"description": "Enter Base URL starting with \"https://\" followed by hostname (Example: https://gateway.dataminr.com/)"
}
},
"AlertsTableName":{
"ClientID":{
"type": "string",
"minLength": 1,
"defaultValue": "DataminrPulse_Alerts"
"metadata": {
"description": "Enter your Dataminr account Client ID"
}
},
"WorkspaceID": {
"type": "string",
"ClientSecret":{
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Enter Workspace ID of log analytics Workspace."
"description": "Enter your Dataminr account Client Secret"
}
},
"WorkspaceKey": {
"type": "securestring",
"AlertsTableName":{
"type": "string",
"minLength": 1,
"defaultValue": "DataminrPulse_Alerts",
"metadata": {
"description": "Enter Workspace Key of log analytics Workspace."
"description": "Enter name of the table used to store Dataminr Alerts logs. Default is 'DataminrPulse_Alerts'"
}
},
"Azure_Client_Id": {
"AzureClientID": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Azure Client Id that you have created during app registration"
"description": "Enter Azure Client ID that you have created during app registration"
}
},
"Azure_Client_Secret": {
"AzureClientSecret": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Enter Azure Client Secret that you have created during creating the client secret"
}
},
"Azure_Tenant_Id": {
"AzureTenantID": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Azure Tenant Id of your Azure Active Directory"
"description": "Enter Azure Tenant ID of your Azure Active Directory"
}
},
"Azure_Resource_Group_Name": {
"AzureResourceGroupName": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Azure Resource Group Name in which you want deploy the data connector"
}
},
"Azure_Workspace_Name": {
"AzureWorkspaceName": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Microsoft Sentinel Workspace Name of Log Analytics workspace"
}
},
"Azure_Subscription_Id": {
"AzureSubscriptionID": {
"type": "string",
"minLength": 1,
"metadata": {
Expand All @@ -92,22 +95,23 @@
},
"LogLevel": {
"type": "string",
"metadata": {
"description": "Add log level or log severity value. Default is 'INFO'"
},
"allowedValues": [
"Debug",
"Info",
"Error",
"Warning"
"Debug",
"Info",
"Error",
"Warning"
],
"defaultValue": "Info",
"metadata": {
"description": "Select log level or log severity value from Debug, Info, Error, Warning. By default it is set to Info."
}
"defaultValue": "Info"
},
"Schedule": {
"type": "string",
"minLength": 11,
"defaultValue": "0 0 * * * *",
"metadata": {
"description": "Please enter a valid Quartz cron-expression. (Example: 0 0 * * * *)"
"description": "Enter a valid Quartz Cron-Expression (Example: 0 0 0 * * *)"
}
},
"AppInsightsWorkspaceResourceID": {
Expand Down Expand Up @@ -165,7 +169,8 @@
}
},
"keySource": "Microsoft.Storage"
}
},
"minimumTlsVersion": "TLS1_2"
}
},
{
Expand Down Expand Up @@ -243,17 +248,17 @@
"APPLICATIONINSIGHTS_CONNECTION_STRING": "[reference(resourceId('microsoft.insights/components', variables('FunctionName')), '2015-05-01').ConnectionString]",
"AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', toLower(variables('FunctionName')),';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', toLower(variables('FunctionName'))), '2019-06-01').keys[0].value, ';EndpointSuffix=',toLower(variables('StorageSuffix')))]",
"logAnalyticsUri": "[variables('LogAnaltyicsUri')]",
"BaseURL": "[parameters('BaseURL')]",
"ClientId": "[parameters('ClientId')]",
"BaseURL": "[parameters('DataminrBaseURL')]",
"ClientId": "[parameters('ClientID')]",
"ClientSecret": "[parameters('ClientSecret')]",
"WorkspaceID": "[parameters('WorkspaceID')]",
"WorkspaceKey": "[parameters('WorkspaceKey')]",
"Azure_Client_Id": "[parameters('Azure_Client_Id')]",
"Azure_Client_Secret": "[parameters('Azure_Client_Secret')]",
"Azure_Tenant_Id": "[parameters('Azure_Tenant_Id')]",
"Azure_Resource_Group_Name": "[parameters('Azure_Resource_Group_Name')]",
"Azure_Workspace_Name": "[parameters('Azure_Workspace_Name')]",
"Azure_Subscription_Id": "[parameters('Azure_Subscription_Id')]",
"Azure_Client_Id": "[parameters('AzureClientID')]",
"Azure_Client_Secret": "[parameters('AzureClientSecret')]",
"Azure_Tenant_Id": "[parameters('AzureTenantID')]",
"Azure_Resource_Group_Name": "[parameters('AzureResourceGroupName')]",
"Azure_Workspace_Name": "[parameters('AzureWorkspaceName')]",
"Azure_Subscription_Id": "[parameters('AzureSubscriptionID')]",
"AlertsTableName": "[parameters('AlertsTableName')]",
"LogLevel": "[parameters('LogLevel')]",
"Schedule": "[parameters('Schedule')]",
Expand Down
Loading