Skip to content

Commit 70fbbc6

Browse files
authored
Merge pull request #266 from troettinger/vnext
Vnext
2 parents 4e6f36c + 1b65b7b commit 70fbbc6

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Identity/AzureStack.Identity.psm1

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function Get-AzsDirectoryTenantidentifier {
2626
return $(Invoke-RestMethod $("{0}/.well-known/openid-configuration" -f $authority.TrimEnd('/'))).issuer.TrimEnd('/').Split('/')[-1]
2727
}
2828

29-
Export-ModuleMember -Function 'Get-AzsDirectoryTenantidentifier'
3029

3130
<#
3231
.Synopsis
@@ -316,7 +315,7 @@ function Register-AzsGuestDirectoryTenant {
316315
}
317316
}
318317

319-
Export-ModuleMember -Function 'Publish-AzsApplicationsToARM'
318+
320319

321320
<#
322321
.Synopsis
@@ -451,8 +450,8 @@ function Register-AzsWithMyDirectoryTenant {
451450
}
452451

453452
Export-ModuleMember -Function @(
454-
"Register-AzureStackWithMyDirectoryTenant",
455-
"Register-GuestDirectoryTenantToAzureStack",
456-
"Get-DirectoryTenantIdentifier",
453+
"Register-AzsWithMyDirectoryTenant",
454+
"Register-AzsGuestDirectoryTenant",
455+
"Get-AzsDirectoryTenantidentifier",
457456
"New-AzsADGraphServicePrincipal"
458457
)

Identity/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $adminARMEndpoint = "https://adminmanagement.<region>.<domain>"
5757
$azureStackDirectoryTenant = "<homeDirectoryTenant>.onmicrosoft.com" # this is the primary tenant Azure Stack is registered to
5858
$guestDirectoryTenantToBeOnboarded = "<guestDirectoryTenant>.onmicrosoft.com" # this is the new tenant that needs to be onboarded to Azure Stack
5959
$location = "local"
60-
Register-GuestDirectoryTenantToAzureStack -AdminResourceManagerEndpoint $adminARMEndpoint `
60+
Register-AzsGuestDirectoryTenant -AdminResourceManagerEndpoint $adminARMEndpoint `
6161
-DirectoryTenantName $azureStackDirectoryTenant `
6262
-GuestDirectoryTenantName $guestDirectoryTenantToBeOnboarded `
6363
-Location $location
@@ -82,6 +82,6 @@ Execute the following cmdlet as the administrator of the directory that needs to
8282
$tenantARMEndpoint = "https://management.<region>.<domain>"
8383
$guestDirectoryTenantName = "<guestDirectoryTenant>.onmicrosoft.com" # this is the new tenant that needs to be onboarded to Azure Stack
8484
85-
Register-AzureStackWithMyDirectoryTenant -TenantResourceManagerEndpoint $tenantARMEndpoint `
85+
Register-AzsWithMyDirectoryTenant -TenantResourceManagerEndpoint $tenantARMEndpoint `
8686
-DirectoryTenantName $guestDirectoryTenantName
8787
```

0 commit comments

Comments
 (0)