Azure-Module.psd1

@{
    RootModule        = 'Azure-Module.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'fa7288b5-0c54-4a96-b2ee-4df7733d81aa'
    Author            = 'Logan Parker'
    CompanyName       = 'Logan Parker'
    Copyright         = '(c) Logan Parker. All rights reserved.'
    Description       = 'Practical automation helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-AzureModuleStatus', 'Initialize-AzureModule')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}