AzureCompute.psd1

@{
    RootModule        = 'AzureCompute.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '02e7fb98-31bb-41c3-9379-4821418cb006'
    Author            = 'Logan Brooks'
    CompanyName       = 'Logan Brooks'
    Copyright         = '(c) Logan Brooks. All rights reserved.'
    Description       = 'Minimal automation helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-AzureComputeStatus', 'Initialize-AzureCompute')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}