DSCResources/cMongoDBDSC/cMongoDBDSC.psd1

@{
    RootModule        = 'cMongoDBDSC.schema.psm1'
    
    DscResourcesToExport = 'cMongoDBDSC'

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

    # ID used to uniquely identify this module
    GUID              = '283a64cd-6998-4b26-8002-23a4f811b902'

    # Author of this module
    Author            = 'Yang Xinyun'

    # Company or vendor of this module
    CompanyName       = 'Yang Xinyun'

    # Copyright statement for this module
    Copyright         = '(c) 2021 Yang Xinyun. All rights reserved.'

    # Description of the functionality provided by this module
    Description       = 'Powershell DSC Resource to install Mongo DB for Windows on Windows Server.'

    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '5.1'

    PrivateData       = @{

        PSData = @{
    
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags                     = @('DSC', 'MongoDB', 'Mongo', 'DSCResource', 'DesiredStateConfiguration')
    
            # A URL to the license for this module.
            # LicenseUri = ''
    
            # A URL to the main website for this project.
            ProjectUri               = 'https://github.com/yangxinyun/cDscMongoDB'
    
            # A URL to an icon representing this module.
            IconUri                  = 'https://img.favpng.com/16/12/14/mongodb-database-clip-art-computer-icons-nosql-png-favpng-DBdwbhycTnwNvHA06hqJMBbmE.jpg'
    
            # ReleaseNotes of this module
            # ReleaseNotes = ''
    
            # Prerelease string of this module
            # Prerelease = ''
    
            # Flag to indicate whether the module requires explicit user acceptance for install/update/save
            RequireLicenseAcceptance = $false
    
            # External dependent modules of this module
            # ExternalModuleDependencies = @()
    
        } # End of PSData hashtable
    
    }

}