blob: 97dbb46a25d248f520c3d11c53b216342071317a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- name: ad group test
hosts: ism
connection: local
gather_facts: no
vars:
ism:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "get active directory group information"
inspur.sm.ad_group_info:
provider: "{{ ism }}"
|