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

Updating data type for Workspacekey and Api tokens #11858

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -14,11 +14,11 @@
},
"WorkspaceKey": {
"defaultValue": "<workspaceKey>",
"type": "String"
"type": "securestring"
},
"API Token": {
"defaultValue": "<Holm Security Token>",
"type": "String"
"type": "securestring"
},
"API URL": {
"defaultValue": "<URL address to Holm Security Center API>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"defaultValue": "<workspaceID>"
},
"WorkspaceKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<workspaceKey>"
},
"APIToken": {
"type": "string",
"type": "securestring",
"defaultValue": "<apiToken>"
},
"Uri": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"defaultValue": "<workspaceID>"
},
"WorkspaceKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<workspaceKey>"
},
"APIUsername": {
"type": "string",
"defaultValue": "<apiUsername>"
},
"APIPassword": {
"type": "string",
"type": "securestring",
"defaultValue": "<apiPassword>"
},
"Uri": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"defaultValue": "<workspaceID>"
},
"WorkspaceKey": {
"type": "string",
"type": "securestring",
"minLength": 88,
"maxLength": 88,
"defaultValue": "<workspaceKey>"
Expand All @@ -25,7 +25,7 @@
"defaultValue": "<apiUsername>"
},
"APIPassword": {
"type": "string",
"type": "securestring",
"defaultValue": "<apiPassword>"
},
"Uri": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"defaultValue": "<workspaceID>"
},
"WorkspaceKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<workspaceKey>"
},
"APIUsername": {
"type": "string",
"defaultValue": "<apiUsername>"
},
"APIPassword": {
"type": "string",
"type": "securestring",
"defaultValue": "<apiPassword>"
},
"Uri": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"workspaceName": {
"workspaceName": {
"defaultValue": "<enter a default Workspace Name>",
"type": "string"
},
Expand All @@ -15,7 +15,7 @@
"defaultValue": "<workspaceID>"
},
"workspaceKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<workspaceKey>"
},
"regionCode": {
Expand All @@ -36,7 +36,7 @@
"defaultValue": "storage"
},
"apiTokens": {
"type": "string",
"type": "securestring",
"defaultValue": "<Trend Micro Vision One API Key>"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"defaultValue": "<workspaceId>"
},
"WorkspaceKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<workspaceKey>"
},
"CarbonBlackLogTypes": {
"type": "string"
},
"APIKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<apiKey>",
"metadata": {
"description": "API Key is a required parameter if you have selected audit as one of the option for Log Types."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"defaultValue": "<workspaceID>"
},
"WorkspaceKey": {
"type": "string",
"type": "securestring",
"defaultValue": "<workspaceKey>"
},
"APIToken": {
"type": "string",
"type": "securestring",
"defaultValue": "<apiToken>"
},
"uri": {
Expand Down
Loading