Skip to content

Commit 18c772b

Browse files
Merge pull request #184 from vikasnav/vikasnav-vnext
Updating the VMName
2 parents 352f3d1 + 880bbd4 commit 18c772b

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Connect/AzureStack.Connect.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function Get-AzureStackNatServerAddress {
150150
[Parameter(HelpMessage="The Domain suffix of the environment VMs")]
151151
[string] $DomainSuffix = 'azurestack.local',
152152
[parameter(HelpMessage="NAT computer name in this Azure Stack Instance")]
153-
[string] $natServer = "mas-bgpnat01",
153+
[string] $natServer = "azs-bgpnat01",
154154
[parameter(HelpMessage="Administrator user name of this Azure Stack Instance")]
155155
[string] $User = "administrator",
156156
[parameter(mandatory=$true, HelpMessage="Administrator password used to deploy this Azure Stack instance")]
@@ -229,7 +229,7 @@ function Connect-AzureStackVpn {
229229
[Parameter(HelpMessage="The Domain suffix of the environment VMs")]
230230
[string] $DomainSuffix = 'azurestack.local',
231231
[parameter(HelpMessage="Certificate Authority computer name in this Azure Stack Instance")]
232-
[string] $Remote = "mas-ca01",
232+
[string] $Remote = "azs-ca01",
233233
[parameter(HelpMessage="Administrator user name of this Azure Stack Instance")]
234234
[string] $User = "administrator",
235235
[parameter(mandatory=$true, HelpMessage="Administrator password used to deploy this Azure Stack instance")]

Connect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The commands below need to access the Azure Stack PoC host computer and Azure St
3434
```powershell
3535
# Add Azure Stack PoC host to the trusted hosts on your client computer
3636
Set-Item wsman:\localhost\Client\TrustedHosts -Value "<Azure Stack host address>" -Concatenate
37-
Set-Item wsman:\localhost\Client\TrustedHosts -Value mas-ca01.azurestack.local -Concatenate
37+
Set-Item wsman:\localhost\Client\TrustedHosts -Value azs-ca01.azurestack.local -Concatenate
3838
```
3939

4040
For the VPN connection, use the admin password provided at the time of the Azure Stack deployment.

Connect/Tests/Connect.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ InModuleScope $script:ModuleName {
6868
$EnvironmentName = $global:EnvironmentName
6969

7070
Set-Item wsman:\localhost\Client\TrustedHosts -Value $HostComputer -Concatenate
71-
Set-Item wsman:\localhost\Client\TrustedHosts -Value mas-ca01.azurestack.local -Concatenate
71+
Set-Item wsman:\localhost\Client\TrustedHosts -Value azs-ca01.azurestack.local -Concatenate
7272

7373
Describe 'ConnectModule - Accessing Environment Data' {
7474
It 'Recovered AAD Tenant ID should be correct' {

Identity/AzureStack.Identity.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function New-ADGraphServicePrincipal {
4848
# Adfs Machine name
4949
[Parameter(Mandatory = $true , Position = 1)]
5050
[string]
51-
$AdfsMachineName = "mas-adfs01.azurestack.local",
51+
$AdfsMachineName = "azs-adfs01.azurestack.local",
5252

5353
# Domain Administrator Credential to create Service Principal
5454
[Parameter(Mandatory = $true,

ToolTestingUtils/ToolTestingScript.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ param (
44
[Parameter(mandatory=$true, HelpMessage="The Admin ARM endpoint of the Azure Stack Environment")]
55
[string] $ArmEndpoint,
66
[parameter(HelpMessage="NAT computer name in this Azure Stack Instance")]
7-
[string] $natServer = "MAS-BGPNAT01",
7+
[string] $natServer = "AzS-BGPNAT01",
88
[parameter(HelpMessage="Administrator user name of this Azure Stack Instance")]
99
[string] $AdminUser = "administrator",
1010
[parameter(HelpMessage="Administrator Azure Stack Environment Name")]

0 commit comments

Comments
 (0)