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