CMAWS.psd1

#
# Module manifest for module 'CMAWS'
#
# Generated by: Chad Miles
#
# Generated on: 4-May-17
#

@{

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

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

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = 'aa85860f-e62e-4cb7-9fee-89d417ce35f5'

# Author of this module
Author = 'Chad Miles'

# Company or vendor of this module
CompanyName = 'Unknown'

# Copyright statement for this module
Copyright = 'Chad Miles'

# Description of the functionality provided by this module
Description = "A collection of AWS helper cmdlets for EC2, Route53, SSM and Polly
Changlelog
----------
0.6.1 Fixed a few bugs in New-CmEc2Instance
 
0.6.0
Added Get-CmEc2InstanceType, which gets all available Instance Types in a Region or us-east-1 if no region is specified.
Updated New-CmEc2Instance and Set-CmEc2InstanceType to autocomplete the instance type
Filtering now done on New-CmEc2Instance to not allow Non Express SQL on t2 instance types
Edit-CmEc2DnsName renamed to Set-CmEc2DnsName
 
0.5.2 Bug fix for New-CMEC2Instance for when SubnetId is specified
0.5.1 Bug fix for Get-CMEC2ImageId for Windows 2008 R2 images
 
0.5.0
Added Get-CMEC2ImageId to use SSM to get latest Windows AMI much quicker than Get-Ec2ImagebyName (180msec vs 10 secs). This means you now need access to SSM.
Added Edit-CMEC2DnsName which ensures the instance is valid and running before setting hostname
Updated New-CMEC2Instance uses Get-CMEC2ImageLatestWindows for AMI fetching
Updated New-CMEC2Instance and Start-CMEC2Instance uses Set-CMEC2DnsName now to set DNS
Updated New-CMEC2Instance and Start-CMEC2Instance add private IP address to DNS if no public IP (Only recomended with private hosted zones)
 
0.4.5 Revamped Convert-TextToSpeech to handle errors and PCM
0.4.4 New-CMEC2Instance fixed for year roll over on pricing
0.4.3 So Many Bug Fixes, Mainly in New-CMEC2Instance
0.4.2 Fixed Convert-TextToSpeech to allow for the longer 1500 lines not including spaces
0.4.1 Fixed bug in Convert-TextToSpeech cmdlet to handle ampersands (&).
0.4.0 Added cmdlet Remove-CMS3DeleteMarkers
0.3.0 Added cmdlet Compare-CMEC2WindowsSpotPricingToOndemand
"


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

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
ProcessorArchitecture = 'None'

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @('AWSPowerShell')

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# 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 = @()

# 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 = 'Convert-TextToSpeech', 'New-CMEC2Instance',  'New-CMPassword',
                    'New-CMEasyPassword',   'Get-EC2WindowsOndemandPrice', 'Compare-CMEC2WindowsSpotPricingToOndemand',
                    'Get-CMEC2Instances',   'Set-R53Record',      'Stop-CMEC2InstanceWait',
                    'Start-CMInstance',     'Stop-AllInstances',  'Send-CMSSMPowerShell', 'Get-CmEc2InstanceTypes',
                    'Connect-RemoteDesktop','Set-CMEC2InstanceType', 'Connect-RemoteDesktop', 'Remove-CMS3DeleteMarkers', 'Get-CMEC2ImageId', 'Set-CmEc2DnsName'
                    
                    

# Cmdlets 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 cmdlets to export.
CmdletsToExport   = @()

# Variables to export from this module
VariablesToExport = '*'

# Aliases 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 aliases to export.
AliasesToExport = '*'

# DSC resources to export from this module
# DscResourcesToExport = @()

# 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. 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 = 'AWS', 'Cloud'

        # A URL to the license for this module.
        # LicenseUri = ''

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/chadish7/CMAWS'

        # A URL to an icon representing this module.
        # IconUri = ''

        # ReleaseNotes of this module
        # ReleaseNotes = 'the Initial version'

    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}