AD-UserLifecycle.psd1

@{
    RootModule        = 'AD-UserLifecycle.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '73d522d5-217b-4256-94ca-7b519bbc2465'
    Author            = 'Larry Roberts'
    CompanyName       = 'Independent Consultant'
    Copyright         = '(c) 2026 Larry Roberts. All rights reserved.'
    Description       = 'Active Directory user lifecycle automation: provisioning from templates, offboarding with data archival, and flexible AD reporting. Requires the ActiveDirectory RSAT module.'

    PowerShellVersion = '5.1'

    FunctionsToExport = @(
        'New-ADUserFromTemplate',
        'Disable-DepartedUser',
        'Export-ADUserReport'
    )

    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()

    PrivateData = @{
        PSData = @{
            Tags       = @('ActiveDirectory', 'UserProvisioning', 'Offboarding', 'Automation', 'RSAT')
            LicenseUri = 'https://github.com/larro1991/AD-UserLifecycle/blob/master/LICENSE'
            ProjectUri = 'https://github.com/larro1991/AD-UserLifecycle'
        }
    }
}