RealmJoin.psd1

@{
    RootModule        = 'RealmJoin.psm1'
    ModuleVersion     = '0.1.1'
    GUID              = 'ab4cd0b9-3080-40c6-8e34-46d7c880e58c'
    Author            = 'glueckkanja'
    CompanyName       = 'glueckkanja AG'
    Copyright         = '(c) 2025 glueckkanja AG. All rights reserved.'
    Description       = 'PowerShell module for managing RealmJoin (https://www.realmjoin.com/) tenant.'
    PowerShellVersion = '5.1'
    RequiredModules   = @(
        @{ModuleName = 'Microsoft.Graph.Authentication'; RequiredVersion = '2.15.0' },
        @{ModuleName = 'Microsoft.Graph.Applications'; RequiredVersion = '2.15.0' },
        @{ModuleName = 'Microsoft.Graph.Identity.DirectoryManagement'; RequiredVersion = '2.15.0' }
    )

    FunctionsToExport = @(
        'New-RJTenant',
        'Update-RJTenant',
        'Show-RJFeatureInfo',
        'Show-RJInteractiveSetup'
    )
    CmdletsToExport   = @()

    VariablesToExport = '*'

    AliasesToExport   = @('Complete-RJTenantOnboarding')

    FileList          = @( 'RealmJoin.psm1' )

    PrivateData       = @{
        PSData = @{
            Tags       = @('RealmJoin', 'Configuration', 'RJTenant', 'RJ')
            LicenseUri = 'https://raw.githubusercontent.com/realmjoin/realmjoin-psmodule/main/LICENSE'
            ProjectUri = 'https://www.realmjoin.com/'
            IconUri    = 'https://raw.githubusercontent.com/realmjoin/realmjoin-psmodule/main/realmjoin-icon.png'
            Prerelease = 'beta1'
        }
    }
    HelpInfoURI       = 'https://docs.realmjoin.com/'
}