IntuneAdminRoles.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule         = 'IntuneAdminRoles.psm1'
    
    # Version number of this module.
    ModuleVersion      = '0.5.1'
    
    # A unique identifier for the module (generate a new GUID for your module).
    GUID               = '12345678-90ab-cdef-1234-567890abcdef'
    
    # Author of the module.
    Author             = 'John Lockett'
    
    # Company or vendor name.
    CompanyName        = 'IT Logistix, LLC'
    
    # Copyright statement.
    Copyright          = '(c) 2025 Your Company'
    
    # Description of the functionality provided by this module.
    Description        = 'This module provides functions to manage Intune admin roles, role assignments, and scope tags using Microsoft Graph Beta.'
    
    # Minimum version of the Windows PowerShell engine required by this module.
    PowerShellVersion  = '5.1'
    
    # Modules that must be imported along with this module.
    RequiredModules    = @("Microsoft.Graph.Beta.DeviceManagement", "Microsoft.Graph.Beta.DeviceManagement.Administration", "Microsoft.Graph.Beta.DeviceManagement.Actions", "Microsoft.Graph.Beta.Groups")
    
    # Modules to import as nested modules of the module specified in RootModule.
    NestedModules      = @()
    
    # Functions to export from this module.
    FunctionsToExport  = @("Connect-IntuneGraph","New-IntuneAdminRole", "New-IntuneRoleAssignment", "New-IntuneDynamicDeviceGroup", "New-IntuneRoleAssignmentGroup", "New-IntuneScopeTag", "Add-IntuneScopeTagToRoleAssignment", "Get-IntuneAdminRoleReport")
    
    # Cmdlets to export from this module (if any).
    CmdletsToExport    = @()
    
    # Variables to export from this module (if any).
    VariablesToExport  = @()
    
    # Aliases to export from this module (if any).
    AliasesToExport    = @()
    
    # Additional files to be loaded with this module.
    FileList           = @()
    
    # Private data to pass to the module.
    PrivateData        = @{
        PSData = @{
            # Tags that help with module discovery in the PowerShell Gallery.
            Tags           = @("Intune", "IntuneAdminRoles", "RBAC", "DeviceManagement")
            ProjectUri     = 'https://github.com/JohnLockett/Intune/tree/main/IntuneAdminRoles'
            LicenseUri     = 'https://opensource.org/licenses/MIT'
            IconUri        = 'https://raw.githubusercontent.com/YourGitHubUser/IntuneAdminRoles/main/icon.png'
            ReleaseNotes   = 'Initial release'
        }
    }
    
    # Help info
    HelpInfoURI        = 'https://github.com/YourGitHubUser/IntuneAdminRoles'
}