Azure-Resources.psd1

@{
    RootModule        = 'Azure-Resources.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'f699e96e-971a-488b-ae1b-7328382496b0'
    Author            = 'Skyler Hayes'
    CompanyName       = 'Skyler Hayes'
    Copyright         = '(c) Skyler Hayes. All rights reserved.'
    Description       = 'Useful tools'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-AzureResourcesStatus', 'Initialize-AzureResources')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}