PSCloudFormation.psd1

#
# Module manifest for module 'PSCloudFormation'
#
# Generated by: Alistair Mackay
#
# Generated on: 04/07/2020
#

@{

    # Script module or binary module file associated with this manifest.
    RootModule        = 'Firefly.PSCloudFormation.dll'

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

    # Supported PSEditions
    CompatiblePSEditions = @('Core', 'Desktop')

    # ID used to uniquely identify this module
    GUID              = '7cf90874-058a-4724-8539-0d9c8c9d3017'

    # Author of this module
    Author            = 'Alistair Mackay'

    # Company or vendor of this module
    CompanyName       = 'Firefly Consulting Ltd.'

    # Copyright statement for this module
    Copyright         = '(c) 2018-2020 Alistair Mackay. All rights reserved.'

    # Description of the functionality provided by this module
    Description       = @'
PSCloudFormation greatly improves the experience of deploying AWS CloudFormation stacks from the commannd line.
It combines the features of aws cloudformation deploy and aws cloudformation package into a small set of
PowerShell cmdlets.
 
Key Features:
- Detection of stack parameters in the template file, presenting them as parameters to the cmdlets.
- Output of all stack events, including those from nested stacks.
- Seamless integration of packaging process, using PowerShell pipleline to pass packaged templates to stack modification cmdlets.
- Supports SAM and the latest CloudFormation enhancements such as resource import and Nested Changesets.
'@


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

    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules   = @('AWS.Tools.CloudFormation', 'AWS.Tools.S3')

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

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

    # 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   = @('Export-PSCFNTerraform','Get-PSCFNStackOutputs','New-PSCFNChangeset','New-PSCFNPackage','New-PSCFNStack','Remove-PSCFNStack','Reset-PSCFNStack','Update-PSCFNStack')

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

    # List of all files packaged with this module
    FileList = @('Firefly.CloudFormation.dll','Firefly.CrossPlatformZip.dll','Firefly.EmbeddedResourceLoader.dll','Firefly.PowerShell.DynamicParameters.dll','Firefly.PSCloudFormation.dll','Firefly.PSCloudFormation.dll-Help.xml','ICSharpCode.SharpZipLib.dll','Microsoft.Bcl.AsyncInterfaces.dll','Newtonsoft.Json.dll','Polly.Contrib.WaitAndRetry.dll','Polly.dll','PSCloudFormation.Completers.psm1','QuikGraph.dll','QuikGraph.Graphviz.dll','sly.dll','System.Buffers.dll','System.Memory.dll','System.Numerics.Vectors.dll','System.Runtime.CompilerServices.Unsafe.dll','System.Threading.Tasks.Extensions.dll','YamlDotNet.dll')

    # Modules to import as nested modules of the module specified in ModuleToProcess
    NestedModules = @(
        'PSCloudFormation.Completers.psm1'
    )

    # 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', 'CloudFormation')

            # Required modules not included as part of this one (implies AWS.Tools.Common which includes AWSSDK.SecurityToken.dll)
            ExternalModuleDependencies = @('AWS.Tools.CloudFormation', 'AWS.Tools.S3')

            # A URL to the license for this module.
            LicenseUri                 = 'https://github.com/fireflycons/PSCloudFormation/blob/master/LICENSE'

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

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

            # ReleaseNotes of this module
            ReleaseNotes = "https://github.com/fireflycons/PSCloudFormation/blob/master/RELEASENOTES.md"

        } # End of PSData hashtable

    } # End of PrivateData hashtable

    # HelpInfo URI of this module
    HelpInfoURI = 'https://github.com/fireflycons/PSCloudFormation'

}