AzSecurity.psd1

@{
    RootModule        = 'AzSecurity.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '0792754b-45b7-43b1-adfd-c25506469d09'
    Author            = 'Jamie Murphy'
    CompanyName       = 'Jamie Murphy'
    Copyright         = '(c) Jamie Murphy. All rights reserved.'
    Description       = 'Lightweight framework helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-AzSecurityStatus', 'Initialize-AzSecurity')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}