Skip to content

Commit f7b0ca1

Browse files
committed
Updating instructions in README to reflect disconnected scenarios
1 parent 3cd3975 commit f7b0ca1

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

CanaryValidator/README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,15 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "serv
3535
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds -WindowsISOPath "<path where the WS2016 ISO is present>"
3636
```
3737

38-
## NOTE: To retrieve the TenantID if not available already, you can use the PEP Get-AzureStackStampInformation available on the emergency console. Instructions on connecting to the PEP are available @ https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-privileged-endpoint
39-
## TenantID is the AADTenantID value returned from the PEP Get-AzureStackStampInformation
38+
## NOTE:
39+
To retrieve the TenantID if not available already, you can use the PEP Get-AzureStackStampInformation available on the emergency console. Instructions on connecting to the PEP are available @ https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-privileged-endpoint
4040

41-
## NOTE: When running Canary against ADFS environment (disconnected), please make sure to pass in the tenantAdminObjectId parameter
42-
## NOTE: If there is no tenant user available, you can create one and use it as shown below.
41+
TenantID is the AADTenantID value returned from the PEP Get-AzureStackStampInformation
42+
43+
## NOTE:
44+
When running Canary against ADFS environment (disconnected), please make sure to pass in the tenantAdminObjectId parameter
45+
## NOTE:
46+
If there is no tenant user available, you can create one and use it as shown below.
4347
```powershell
4448
$tenantAdminUserName = "CanaryTenantAdmin"
4549
$tenantAdminPassword = "PasswordOfYourChoice"
@@ -48,9 +52,11 @@ $tenantAdminUpn = $tenantAdminAccount.UserPrincipalName
4852
$tenantAdminObjectId = $tenantAdminAccount.SID.Value
4953
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential $tenantAdminUpn, (ConvertTo-SecureString $tenantAdminPassword -AsPlainText -Force)
5054
```
51-
## NOTE: To install Azure PowerShell in a disconnected or a partially connected senario, follow the instructions @ https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-powershell-install?view=azurestackps-1.2.9&toc=%2fpowershell%2fmodule%2ftoc.json%3fview%3dazurestackps-1.2.9&view=azurestackps-1.2.9#install-powershell-in-a-disconnected-or-in-a-partially-connected-scenario
55+
## NOTE:
56+
To install Azure PowerShell in a disconnected or a partially connected senario, follow the instructions @ https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-powershell-install?view=azurestackps-1.2.9&toc=%2fpowershell%2fmodule%2ftoc.json%3fview%3dazurestackps-1.2.9&view=azurestackps-1.2.9#install-powershell-in-a-disconnected-or-in-a-partially-connected-scenario
5257

53-
## NOTE: While running Canary make sure to pass the usernames in the format: [email protected]
58+
## NOTE:
59+
While running Canary make sure to pass the usernames in the format: [email protected]
5460

5561
## To list the usecases in Canary
5662

0 commit comments

Comments
 (0)