jh_o365_PIM.psd1

@{
    RootModule            = 'jh_o365_PIM.psm1'
    ModuleVersion         = '1.0.0'
    GUID                  = '12b4ccdb-5b23-4f1e-82b2-3c9d5e7a1b4f'
    Author                = 'Your Name'
    CompanyName           = 'Your Company'
    Description           = 'PowerShell module for managing Microsoft Entra Privileged Identity Management (PIM) role activations. Provides functions to list eligible roles and activate roles with custom justification.'
    PowerShellVersion     = '5.1'
FunctionsToExport    = @('Connect-O365Pim', 'Get-O365PimEligibleRole', 'Get-O365PimActiveAssignment', 'Enable-O365PimRole', 'Disable-O365PimRole')
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @()
    RequiredModules       = @('Microsoft.Graph.Authentication')
    HelpInfoUri           = ''
    PrivateData           = @{
        PSData = @{
            Prerelease   = ''
            ExternalModuleDependencies = @('Microsoft.Graph.Authentication')
        }
    }
}