PSCloudFormation.netcore.psd1

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

    }

    Copyright = "(c) 2018 Alistair Mackay. All rights reserved."
    PowerShellVersion = "6.0"
    HelpInfoURI = "https://github.com/fireflycons/PSCloudFormation"
    RequiredModules = @("AWSPowerShell.netcore")
    ModuleVersion = '1.0.5'
    AliasesToExport = @()
    VariablesToExport = @()
    RootModule = "PSCloudFormation.psm1"
    CmdletsToExport = @()
    CompatiblePSEditions = @("Core")
    FunctionsToExport = @("Get-PSCFNStackOutputs", "New-PSCFNStack", "Remove-PSCFNStack", "Reset-PSCFNStack", "Update-PSCFNStack")
    Author = "Alistair Mackay"
}