summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_psmodule/files/module/template.psd1
blob: cd6709722b4706dff4a7214a5716dd63ae76655a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@{
    RootModule = '--- NAME ---.psm1'
    ModuleVersion = '--- VERSION ---'
    GUID = '--- GUID ---'
    Author = 'Ansible'
    Copyright = 'Copyright (c) 2019 Ansible, licensed under MIT.'
    Description = "Test for Ansible win_ps* modules"
    PowerShellVersion = '3.0'
    FunctionsToExport = @(
        "--- FUNCTION ---"
    )
    PrivateData = @{
        PSData = @{
--- PS_DATA ---
        }
    }
}