ieisystem.inmanage.ad_group – Manage active directory group information¶
Note
This plugin is part of the ieisystem.inmanage collection.
To install it use: ansible-galaxy collection install ieisystem.inmanage
.
To use it in a playbook, specify: ieisystem.inmanage.ad_group
.
New in version 1.0.0: of ieisystem.inmanage
Requirements¶
The below requirements are needed on the host that executes this module.
Python 3.7+
inManage
Parameters¶
Examples¶
- name: Ad group test
hosts: inmanage
connection: local
gather_facts: no
vars:
inmanage:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Add active directory group information"
ieisystem.inmanage.ad_group:
state: "present"
name: "wbs"
domain: "test.com"
pri: "administrator"
kvm: "enable"
vm: "disable"
provider: "{{ inmanage }}"
- name: "Set active directory group information"
ieisystem.inmanage.ad_group:
state: "present"
name: "wbs"
pri: "user"
kvm: "disable"
provider: "{{ inmanage }}"
- name: "Delete active directory group information"
ieisystem.inmanage.ad_group:
state: "absent"
name: "wbs"
provider: "{{ inmanage }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ieisystem)