Skip to content

Commit aed8893

Browse files
committed
Updating instructions in README to reflect disconnected scenarios
1 parent f0fc747 commit aed8893

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

CanaryValidator/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,11 @@ $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:
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
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
4039
# TenantID is the AADTenantID value returned from the PEP Get-AzureStackStampInformation
4140

4241
## NOTE: When running Canary against ADFS environment (disconnected), please make sure to pass in the tenantAdminObjectId parameter
43-
## NOTE:
44-
# If there is no tenant user available, you can create one and use it as shown below.
42+
## NOTE: If there is no tenant user available, you can create one and use it as shown below.
4543
```powershell
4644
$tenantAdminUserName = "CanaryTenantAdmin"
4745
$tenantAdminPassword = "PasswordOfYourChoice"
@@ -50,11 +48,9 @@ $tenantAdminUpn = $tenantAdminAccount.UserPrincipalName
5048
$tenantAdminObjectId = $tenantAdminAccount.SID.Value
5149
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential $tenantAdminUpn, (ConvertTo-SecureString $tenantAdminPassword -AsPlainText -Force)
5250
```
53-
## NOTE:
54-
# 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
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
5552

56-
## NOTE:
57-
# While running Canary make sure to pass the usernames in the format: user@domain.com
53+
## NOTE: While running Canary make sure to pass the usernames in the format: user@domain.com
5854

5955
## To list the usecases in Canary
6056

0 commit comments

Comments
 (0)