summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-sanity-validate-modules/ansible_collections/ns/ps_only/plugins/modules/sidecar.ps1
blob: 1bfa06601d9957b28e183172e24f4456ff8d0d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!powershell
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

#AnsibleRequires -CSharpUtil Ansible.Basic

$module = [Ansible.Basic.AnsibleModule]::Create($args, @{
        options = @{
            test = @{ type = 'str'; choices = @('foo', 'bar'); default = 'foo' }
        }
    })

$module.Result.test = 'abc'

$module.ExitJson()