Skip to content

Commit 45ee09a

Browse files
authored
Merge pull request #267 from troettinger/master
Export Functions fix and Readme Update
2 parents 534deca + 5a91273 commit 45ee09a

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

Identity/AzureStack.Identity.psm1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,8 @@ function Register-AzsWithMyDirectoryTenant {
451451

452452
Export-ModuleMember -Function @(
453453
"Register-AzsGuestDirectoryTenant",
454-
"Register-AzsGuestDirectoryTenant",
454+
"Register-AzsWithMyDirectoryTenant",
455455
"Get-AzsDirectoryTenantidentifier",
456456
"New-AzsADGraphServicePrincipal"
457+
457458
)

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)