Skip to content

Commit fb25486

Browse files
committed
:Making tools repo to specify the requiredversion of AzureStack module 1.2.8
1 parent 9abea18 commit fb25486

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

CanaryValidator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cd AzureStack-Tools-master\CanaryValidator
1515
# To execute Canary as Tenant Administrator
1616
```powershell
1717
# Install-Module AzureRM -RequiredVersion 1.2.8 -Force
18-
# Install-Module AzureStack
18+
# Install-Module AzureStack -RequiredVersion 1.2.8 -Force
1919
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
2020
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
2121
.\Canary.Tests.ps1 -AADTenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds
@@ -24,7 +24,7 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
2424
# To execute Canary as Service Administrator
2525
```powershell
2626
# Install-Module AzureRM -RequiredVersion 1.2.8 -Force
27-
# Install-Module AzureStack
27+
# Install-Module AzureStack -RequiredVersion 1.2.8 -Force
2828
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
2929
.\Canary.Tests.ps1 -AADTenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>"
3030
```

ComputeAdmin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Make sure you have the following module prerequisites installed:
55

66
```powershell
77
Install-Module -Name AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
8-
Install-Module -Name AzureStack
8+
Install-Module -Name AzureStack -RequiredVersion 1.2.8 -Scope CurrentUser
99
```
1010
Then make sure the following modules are imported:
1111

Connect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ As a prerequisite, make sure that you installed the correct PowerShell modules a
22

33
```powershell
44
Install-Module -Name AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
5-
Install-Module -Name AzureStack
5+
Install-Module -Name AzureStack -RequiredVersion 1.2.8 -Scope CurrentUser
66
```
77

88
This tool set allows you to connect to an Azure Stack PoC (Proof of Concept) instance from an external personal laptop. You can then access the portal or log into that environment via PowerShell.

Identity/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```powershell
44
Install-Module -Name AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
5-
Install-Module -Name AzureStack -Scope CurrentUser
5+
Install-Module -Name AzureStack -RequiredVersion 1.2.8 -Scope CurrentUser
66
```
77
Then make sure the following modules are imported:
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For PowerShell, install the following:
1010

1111
```powershell
1212
Install-Module -Name AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
13-
Install-Module -Name AzureStack -Scope CurrentUser
13+
Install-Module -Name AzureStack -RequiredVersion 1.2.8 -Scope CurrentUser
1414
```
1515

1616
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
@@ -6,7 +6,7 @@ Make sure you have the following module prerequisites installed:
66

77
```powershell
88
Install-Module -Name AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
9-
Install-Module -Name AzureStack
9+
Install-Module -Name AzureStack -RequiredVersion 1.2.8 -Scope CurrentUser
1010
```
1111
Then make sure the following modules are imported:
1212

0 commit comments

Comments
 (0)