Skip to content

Commit 405fbcd

Browse files
Merge pull request #337 from Azure/azps1211
Changes corresponding to PS version 1.2.11
2 parents cb8a391 + 5841597 commit 405fbcd

File tree

7 files changed

+13
-14
lines changed

7 files changed

+13
-14
lines changed

CanaryValidator/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Set-Location -Path ".\AzureStack-Tools-master\CanaryValidator" -PassThru
1717
```powershell
1818
# Install-Module -Name 'AzureRm.Bootstrapper'
1919
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
20-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
20+
# Install-Module -Name AzureStack -RequiredVersion 1.2.11
2121
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
2222
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
2323
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds
@@ -29,7 +29,7 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
2929
# Download the WS2016 ISO image from: https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2016, and place it on your local machine
3030
# Install-Module -Name 'AzureRm.Bootstrapper'
3131
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
32-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
32+
# Install-Module -Name AzureStack -RequiredVersion 1.2.11
3333
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
3434
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
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>"
@@ -41,7 +41,7 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
4141
```powershell
4242
# Install-Module -Name 'AzureRm.Bootstrapper'
4343
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
44-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
44+
# Install-Module -Name AzureStack -RequiredVersion 1.2.11
4545
.\Canary.Tests.ps1 -ListAvailable
4646
4747
Sample output:
@@ -129,7 +129,7 @@ List of scenarios in Canary:
129129
```powershell
130130
# Install-Module -Name 'AzureRm.Bootstrapper'
131131
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
132-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
132+
# Install-Module -Name AzureStack -RequiredVersion 1.2.11
133133
# A new paramter called ExclusionList has been added which is a string array. Pass in the list of usecases you don't want to execute to this parameter.
134134
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
135135
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -ExclusionList "ListFabricResourceProviderInfo","ListUpdateResourceProviderInfo"

ComputeAdmin/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Instructions below are relative to the .\ComputeAdmin folder of the [AzureStack-
77
Make sure you have the following module prerequisites installed:
88

99
```powershell
10-
Install-Module -Name 'AzureRm.Bootstrapper'
11-
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
12-
Install-Module -Name AzureStack -RequiredVersion 1.2.10
10+
Install-Module -Name 'AzureRm.Bootstrapper'
11+
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
12+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
1313
```
1414

1515
Then make sure the following modules are imported:

Connect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ As a prerequisite, make sure that you installed the correct PowerShell modules a
55
```powershell
66
Install-Module -Name 'AzureRm.Bootstrapper'
77
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
8-
Install-Module -Name AzureStack -RequiredVersion 1.2.10
8+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
99
```
1010

1111
This tool set allows you to connect to an Azure Stack Development Kit (ASDK) instance from an external personal laptop. You can then access the portal or log into that environment via PowerShell.

Identity/AzureStack.Identity.psm1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ function New-AzsAdGraphServicePrincipal {
5555
[System.Management.Automation.PSCredential]
5656
$AdminCredential
5757
)
58-
5958
$ApplicationGroupName = $DisplayName
6059
$computerName = $ERCSMachineName
6160
$cloudAdminCredential = $AdminCredential

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ To use these tools, obtain Azure Stack compatible Azure PowerShell module. Unles
99
For PowerShell, install the following:
1010

1111
```powershell
12-
Install-Module -Name 'AzureRm.Bootstrapper'
13-
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
14-
Install-Module -Name AzureStack -RequiredVersion 1.2.10
12+
Install-Module -Name 'AzureRm.Bootstrapper'
13+
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
14+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
1515
```
1616

1717
Obtain the tools by cloning the git repository.

ServiceAdmin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Make sure you have the following module prerequisites installed:
77
```powershell
88
Install-Module -Name 'AzureRm.Bootstrapper'
99
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
10-
Install-Module -Name AzureStack -RequiredVersion 1.2.10
10+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
1111
```
1212

1313
Then make sure the following modules are imported:

Usage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ As a prerequisite, make sure that you installed the correct PowerShell modules a
55
```powershell
66
Install-Module -Name 'AzureRm.Bootstrapper'
77
Install-AzureRmProfile -profile '2017-03-09-profile' -Force
8-
Install-Module -Name AzureStack -RequiredVersion 1.2.10
8+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
99
```
1010

1111
Use this script to extract usage data from the AzureStack Usage API's and export it to a CSV file

0 commit comments

Comments
 (0)