AADSCConfigContent.psd1

#
# Module manifest for module 'AADSCConfigContent'
#
# Generated by: Michael Greene
#
# Generated on: 6/11/2021
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'AADSCConfigContent.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'

# ID used to uniquely identify this module
GUID = 'c68446d4-92b9-466b-a2db-f06c6d7332cd'

# Author of this module
Author = 'Michael Greene'

# Description of the functionality provided by this module
Description = 'Simple PowerShell script module with one function that returns the content of a DSC configuration stored in Azure Automation'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName='Az.Accounts';ModuleVersion='2.3.0'})

# 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 = 'Get-AADSCConfigContent'

# 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 = @('AzureAutomation','Az.Automation','DSC','AADSC','Config','Migration')

        # A URL to the license for this module.
        LicenseUri = 'https://github.com/mgreenegit/Get-AADSCConfigContent/blob/main/LICENSE'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/mgreenegit/Get-AADSCConfigContent/'

        # ReleaseNotes of this module
        ReleaseNotes = 'https://github.com/mgreenegit/Get-AADSCConfigContent/blob/main/README.md'

    } # End of PSData hashtable

} # End of PrivateData hashtable

}