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

Infoblox Tooltip Changes #11349

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 @@ -2,18 +2,32 @@
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"WorkspaceID": {
"minLength": 1,
"type": "String",
"metadata": {
"description": "Enter Workspace ID of Log Analytics workspace"
}
},
"WorkspaceKey": {
"minLength": 1,
"type": "SecureString",
"metadata": {
"description": "Enter Primary Key of Log Analytics workspace"
}
},
"InfobloxBaseURL": {
"defaultValue": "https://csp.infoblox.com",
"type": "string",
"metadata": {
"description": "Enter Base URL of Infoblox API. (e.g. https://csp.infoblox.com)"
"description": "Enter Base URL starting with \"https://\" followed by hostname (Example: https://csp.infoblox.com)"
}
},
"InfobloxAPIToken": {
"minLength": 1,
"type": "SecureString",
"metadata": {
"description": "Enter Infoblox API Token for authentication"
"description": "Enter Infoblox API Token for Authentication"
}
},
"Confidence": {
Expand All @@ -22,7 +36,7 @@
"minValue": 0,
"maxValue": 100,
"metadata": {
"description": "Specify the confidence for creating indicators (Indicators will be generated with a confidence greater than or equal to the specified value), By default it is set to 80"
"description": "Specify the confidence for creating indicators (Indicators will be generated with a confidence greater than or equal to the specified value). Default is '80'"
}
},
"ThreatLevel": {
Expand All @@ -31,7 +45,7 @@
"minValue": 0,
"maxValue": 100,
"metadata": {
"description": "Specify the threat level for creating indicators (Indicators will be generated with a threat level greater than or equal to the specified value), By default it is set to 80"
"description": "Specify the threat level for creating indicators (Indicators will be generated with a threat level greater than or equal to the specified value). Default is '80'"
}
},
"HistoricalDataCutoffDate": {
Expand Down Expand Up @@ -62,32 +76,18 @@
"description": "Enter Azure Client Secret that you have created during creating the client secret"
}
},
"WorkspaceID": {
"minLength": 1,
"type": "String",
"metadata": {
"description": "Enter Workspace ID of Log Analytics workspace"
}
},
"WorkspaceKey": {
"minLength": 1,
"type": "SecureString",
"metadata": {
"description": "Enter Workspace Key of Log Analytics workspace"
}
},
"LogLevel": {
"defaultValue": "Info",
"type": "string",
"metadata": {
"description": "Add log level or log severity value. Default is 'INFO'"
},
"allowedValues": [
"Debug",
"Info",
"Error",
"Warning"
],
"type": "String",
"metadata": {
"description": "Add log level or log severity value, By default it is set to INFO"
}
"defaultValue": "Info"
},
"AppInsightsWorkspaceResourceID": {
"type": "string",
Expand Down Expand Up @@ -185,7 +185,8 @@
}
},
"keySource": "Microsoft.Storage"
}
},
"minimumTlsVersion": "TLS1_2"
},
"copy": {
"name": "storageaccountcopy",
Expand Down
Loading