-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAWSExt.psd1
47 lines (36 loc) · 3.09 KB
/
AWSExt.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
@{
RootModule = 'AWSExt.psm1';
ModuleVersion = '0.1';
GUID = 'bd4390dc-a8ad-4bce-8d69-f53ccf8e4163';
Author = 'Trevor Sullivan <[email protected]>';
CompanyName = 'Art of Shell LLC';
Copyright = '(c) 2016 Art of Shell LLC. All rights reserved.';
Description = 'The AWS PowerShell Extensions are intended to provide a pleasant user experience on top of the core, official Amazon Web Services (AWS) PowerShell module.';
# PowerShellVersion = '5.0';
# RequiredModules = @('AWSPowerShell');
FunctionsToExport = '';
CmdletsToExport = '';
VariablesToExport = '';
AliasesToExport = '*';
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
# List of all modules packaged with this module
# ModuleList = @()
# List of all files packaged with this module
# FileList = @()
# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{
PSData = @{
Tags = @('Amazon', 'AWS');
ProjectUri = 'https://github.com/artofshell/awsext';
LicenseUri = 'https://trevorsullivan.net/trevor-license.txt';
ReleaseNotes = '0.1 - Initial release';
}
}
# HelpInfo URI of this module
# HelpInfoURI = ''
}