-
Notifications
You must be signed in to change notification settings - Fork 1
/
SecretManagement.PleasantPasswordServer.psd1
43 lines (34 loc) · 3.3 KB
/
SecretManagement.PleasantPasswordServer.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
@{
# Script module or binary module file associated with this manifest.
RootModule = 'SecretManagement.PleasantPasswordServer.psm1'
# Version number of this module.
ModuleVersion = '1.0.0'
# Supported PSEditions
CompatiblePSEditions = @('Desktop', 'Core')
# ID used to uniquely identify this module
GUID = '023f1450-97f9-4b5d-8b86-558bd86e8ffc'
# Author of this module
Author = 'Constantin Hager'
# Copyright statement for this module
Copyright = '(c) 2020 Constantin Hager. All rights reserved.'
# Description of the functionality provided by this module
Description = 'A cross-platform Pleasent Password Server Secret Management vault extension. See the README.MD in the module for more details.'
# Modules that must be imported into the global environment prior to importing this module
NestedModules = @(
'./SecretManagement.PleasantPasswordServer.Extension/SecretManagement.PleasantPasswordServer.Extension.psd1'
)
RequiredModules = @(
"Microsoft.Powershell.SecretManagement"
)
PowershellVersion = '5.1'
FunctionsToExport = @('New-PleasantCredential', 'Register-PleasantVault')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = 'SecretManagement', 'PleasantPasswordServer', 'SecretVault', 'Vault', 'Secret'
ProjectUri = 'https://github.com/constantinhager/SecretManagement.PleasantPasswordServer'
}
}
}