Skip to content

Commit 86cd7ec

Browse files
authored
Update disconnected-operations-deploy.md
Reviewed and revised for text clarity and SFI.
1 parent 81df26a commit 86cd7ec

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

azure-local/manage/disconnected-operations-deploy.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -296,18 +296,18 @@ Populate the required parameters based on your deployment planning. Modify the e
296296
297297
$identityParams = @{
298298
Authority = "https://adfs.azurestack.local/adfs"
299-
ClientId = "7e7655c5-9bc4-45af-8345-afdf6bbe2ec1"
299+
ClientId = "<ClientId>"
300300
RootOperatorUserPrincipalName = "[email protected]"
301301
LdapServer = "adfs.azurestack.local"
302302
LdapCredential = New-Object PSCredential -ArgumentList @("ldap", $ldapPassword)
303303
OidcCertChain = $oidcCertChain
304-
SyncGroupIdentifier = "7d67fcd5-c2f4-4948-916c-b77ea7c2712f"
304+
SyncGroupIdentifier = "<SynGroupIdentifier>"
305305
}
306306
$identityConfiguration = New-ApplianceExternalIdentityConfiguration @identityParams
307307
```
308308
309309
> [!NOTE]
310-
> `LdapsCertChainInfo` and `OidcCertChain` can be omitted completely for debugging or demo purposes. For information on how to get LdapsCertChainInfo and OidcCertChainInfo, see [PKI for disconnected operations](disconnected-operations-pki.md). Please note that in this preview release, there is an issue with the Get-CertificateChainFromEndpoint not being exported as intended - please resolve using the mitigation [here](disconnected-operations-known-issues.md).
310+
> `LdapsCertChainInfo` and `OidcCertChain` can be omitted completely for debugging or demo purposes. For information on how to get LdapsCertChainInfo and OidcCertChainInfo, see [PKI for disconnected operations](disconnected-operations-pki.md). In this preview release, there's an issue with the `Get-CertificateChainFromEndpoint` not being exported as intended. Use the steps in [Known issues for disconnected operations for Azure Local](disconnected-operations-known-issues.md) to mitigate this issue.
311311
312312
313313
@@ -408,7 +408,7 @@ To configure observability, follow these steps:
408408
409409
```json
410410
{
411-
"appId": "f9c68c7b-0df2-4b3a-9833-3cfb41c6f829",
411+
"appId": "<AppId>",
412412
"displayName": "azlocalobsapp",
413413
"password": "<RETRACTED>",
414414
"tenant": "<RETRACTED>"
@@ -422,7 +422,7 @@ To configure observability, follow these steps:
422422
$observabilityConfiguration = New-ApplianceObservabilityConfiguration -ResourceGroupName "azure-disconnectedoperations" `
423423
-TenantId "<TenantID>" `
424424
-Location "<Location>" `
425-
-SubscriptionId "<subscriptionId>" `
425+
-SubscriptionId "<SubscriptionId>" `
426426
-ServicePrincipalId "<AppId>" `
427427
-ServicePrincipalSecret ("<Password>"|ConvertTo-SecureString -AsPlainText -Force)
428428
@@ -486,7 +486,7 @@ Use the operator account to create an SPN for Arc initialization of each Azure L
486486
487487
```json
488488
{
489-
"appId": "f9c68c7b-0df2-4b3a-9833-3cfb41c6f829",
489+
"appId": "<AppId>",
490490
"displayName": "azlocalclusapp",
491491
"password": "<RETRACTED>",
492492
"tenant": "<RETRACTED>"
@@ -521,7 +521,7 @@ To initialize each node, follow these steps. Modify where necessary to match you
521521
Write-Host "az login to Disconnected operations cloud"
522522
az cloud set -n $applianceCloudName --only-show-errors
523523
Write-Host "Login using service principal"
524-
az login --service-principal --username $appId --password $clientSecret --tenant 98b8267d-e97f-426e-8b3f-7956511fd63f
524+
az login --service-principal --username $appId --password $clientSecret --tenant <TenantId>
525525
# If you prefer interactive login..
526526
# Write-Host "Using device code login - complete the login from your browser"
527527
# az login --use-device-code

0 commit comments

Comments
 (0)