DockerStack.psd1

@{
    RootModule = 'DockerStack.psm1';
    Description = 'Module to serve the purpose of interfacing with Docker stacks with regards to templating (w/o docker-compose), deploying, etc.'
    ModuleVersion = '0.11.47981';
    GUID = '913e7ae2-3264-4691-8ffa-dea8c2976695';
    Author = 'CentralSquare Technologies LLC.';
    CompanyName = 'CentralSquare Technologies LLC.';
    FunctionsToExport = @(
        'Get-StackDefinition',
        'Set-StackDefinition',
        'Invoke-StackDefinitionInterpolation',
        'Invoke-StackDeploy'
    );
    CmdletsToExport = '';
    VariablesToExport = '';
    AliasesToExport = @();
    RequiredModules = @('powershell-yaml');
    PrivateData = @{
        PSData = @{
            LicenseUri = ''
            ProjectUri = 'https://superion.visualstudio.com/PA/PA%20Team/_git/pac-tools?path=%2FPowershell%2FModules%2FDockerStack&version=GBmaster'
            IconUri = ''
            CommitHash = 'c645212cbcd966484b4181276c2492ab314fa414'
        }
    }
    DefaultCommandPrefix = ''
}