-
Notifications
You must be signed in to change notification settings - Fork 0
/
cMongoDB.psd1
57 lines (37 loc) · 1.97 KB
/
cMongoDB.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@{
RootModule = 'cMongoDB.psm1'
# 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
}
}