PSCloudFormation.netcore.psd1

@{
    AliasesToExport = @()
    ModuleVersion = "1.2.0"
    CompanyName = "Firefly Consulting Ltd."
    CompatiblePSEditions = @("Core")
    Copyright = "(c) 2018 Alistair Mackay. All rights reserved."
    PrivateData = @{
        PSData = @{
            LicenseUri = "https://github.com/fireflycons/PSCloudFormation/blob/master/LICENSE"
            ProjectUri = "https://github.com/fireflycons/PSCloudFormation"
            ReleaseNotes = "https://github.com/fireflycons/PSCloudFormation/blob/master/RELEASENOTES.md"
            ExternalModuleDependencies = @("AWSPowerShell.netcore")
            Tags = @("AWS", "CloudFormation")
        }

    }

    PowerShellVersion = "6.0"
    HelpInfoURI = "https://github.com/fireflycons/PSCloudFormation"
    RootModule = "PSCloudFormation.psm1"
    VariablesToExport = @()
    RequiredModules = @("AWSPowerShell.netcore")
    CmdletsToExport = @()
    GUID = "87c7f071-2c52-4fb7-9348-17de474650b8"
    FunctionsToExport = @("Get-PSCFNStackOutputs", "New-PSCFNStack", "Remove-PSCFNStack", "Reset-PSCFNStack", "Update-PSCFNStack")
    Description = "Wrapper for CloudFormation Deployments"
    Author = "Alistair Mackay"
}