pcit.az.rbac.psd1

@{
    RootModule = 'pcit.az.rbac.psm1'
    ModuleVersion = "0.4"
    GUID = 'D256F02F-BC03-4A08-8C95-2F019CE7879F'
    Author = 'Patrick Charbonnier'
    description = "Beta version of the PCIT Permission analyser module (not signed)"
    CompanyName = 'Patrick Charbonnier IT Consulting & Training'
    PowerShellVersion = "5.1"
    RequiredModules = @('az.accounts','Az.Resources')
    # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
    FunctionsToExport = @(
        "Connect-pcitAzureTenant",
        "get-pcitAZmanagementGroups",
        "get-pcitAZSubscriptions",
        "get-PcitAZResourceGroups",
        "get-PcitAZResources",
        "Get-pcitAZRoleDelegationReport"
    )

    # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
    CmdletsToExport = @(
    )

    # Variables to export from this module
    VariablesToExport = '*'

    # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
    AliasesToExport = @()

    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{

        PSData = @{

            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @("azure","iam","rbac","rightsmanagement")

            # A URL to the license for this module.
            # LicenseUri = ''

            # A URL to the main website for this project.
            # ProjectUri = ''

            # A URL to an icon representing this module.
            # IconUri = ''

            # ReleaseNotes of this module
            # ReleaseNotes = ''

            # Prerelease string of this module
            # Prerelease = ''

            # Flag to indicate whether the module requires explicit user acceptance for install/update/save
            # RequireLicenseAcceptance = $false

            # External dependent modules of this module
            # ExternalModuleDependencies = @()

        } # End of PSData hashtable

    } #

}