Skip to content

Commit d86fdda

Browse files
author
Frank Hu
authored
(AzureCXP) changing public/private configs
Per git issue : https://github.com/MicrosoftDocs/azure-docs/issues/38001 The values should be changed according to the docs to a hashmap https://docs.microsoft.com/en-us/powershell/module/az.compute/set-azvmextension?view=azps-2.6.0
1 parent 32e5f25 commit d86fdda

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/security-center/security-center-enable-data-collection.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -282,13 +282,13 @@ You can manually install the Log Analytics Agent, so Security Center can collect
282282

283283
3. Populate the public config and the private config with these values:
284284

285-
$PublicConf = '{
286-
"workspaceId": "WorkspaceID value"
287-
}'
285+
$PublicConf = @{
286+
"workspaceId"= "<WorkspaceID value>"
287+
}
288288

289-
$PrivateConf = '{
290-
"workspaceKey": "<Primary key value>”
291-
}'
289+
$PrivateConf = @{
290+
"workspaceKey"= "<Primary key value>”
291+
}
292292

293293
- When installing on a Windows VM:
294294

0 commit comments

Comments
 (0)