Skip to content

Commit 534deca

Browse files
authored
Merge pull request #265 from troettinger/master
Fix Export Functions
2 parents fff798c + 7faa4e7 commit 534deca

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

Identity/AzureStack.Identity.psm1

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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'
29+
3030

3131
<#
3232
.Synopsis
@@ -316,7 +316,6 @@ function Register-AzsGuestDirectoryTenant {
316316
}
317317
}
318318

319-
Export-ModuleMember -Function 'Publish-AzsApplicationsToARM'
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-AzsGuestDirectoryTenant",
454+
"Register-AzsGuestDirectoryTenant",
455+
"Get-AzsDirectoryTenantidentifier",
457456
"New-AzsADGraphServicePrincipal"
458457
)

0 commit comments

Comments
 (0)