ieisystem.inmanage.edit_smtp – Set SMTP 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.edit_smtp
.
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: Smtp test
hosts: inmanage
no_log: true
connection: local
gather_facts: no
vars:
inmanage:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Set smtp information"
ieisystem.inmanage.edit_smtp:
interface: "eth0"
email: "ieit@ieisystem.com"
primary_status: "enable"
primary_ip: "100.2.2.2"
primary_name: "test"
primary_auth: "disable"
provider: "{{ inmanage }}"
- name: "Set smtp information"
ieisystem.inmanage.edit_smtp:
interface: "eth0"
email: "ieit@ieisystem.com"
primary_status: "enable"
primary_ip: "100.2.2.2"
primary_name: "test"
primary_auth: "enable"
primary_username: "test"
primary_password: my_password
provider: "{{ inmanage }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ieisystem)