PSCloudFormation.netcore.psd1

@{
    Copyright = "(c) 2018 Alistair Mackay. All rights reserved."
    CompanyName = "Firefly Consulting Ltd."
    RootModule = "PSCloudFormation.psm1"
    GUID = "87c7f071-2c52-4fb7-9348-17de474650b8"
    Description = "Wrapper for CloudFormation Deployments"
    RequiredModules = @("AWSPowerShell.netcore")
    CmdletsToExport = @()
    PrivateData = @{
        PSData = @{
            ExternalModuleDependencies = @("AWSPowerShell.netcore")
            Tags = @("AWS", "CloudFormation")
            ReleaseNotes = "https://github.com/fireflycons/PSCloudFormation/blob/master/RELEASENOTES.md"
            ProjectUri = "https://github.com/fireflycons/PSCloudFormation"
            LicenseUri = "https://github.com/fireflycons/PSCloudFormation/blob/master/LICENSE"
        }

    }

    CompatiblePSEditions = @("Core")
    ModuleVersion = '2.2.2'
    VariablesToExport = @()
    PowerShellVersion = "6.0"
    HelpInfoURI = "https://github.com/fireflycons/PSCloudFormation"
    FunctionsToExport = @("Get-PSCFNStackOutputs", "New-PSCFNStack", "Remove-PSCFNStack", "Reset-PSCFNStack", "Update-PSCFNStack", "New-PSCFNPackage")
    AliasesToExport = @()
    Author = "Alistair Mackay"
}