mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
542 B
YAML
25 lines
542 B
YAML
5 years ago
|
- name: test no log with suboptions
|
||
|
hosts: testhost
|
||
|
gather_facts: no
|
||
|
|
||
|
tasks:
|
||
|
- name: Task with suboptions
|
||
|
module:
|
||
|
secret: GLAMOROUS
|
||
|
subopt_dict:
|
||
|
str_sub_opt1: AFTERMATH
|
||
|
str_sub_opt2: otherstring
|
||
|
nested_subopt:
|
||
|
n_subopt1: MANPOWER
|
||
|
|
||
|
subopt_list:
|
||
|
- subopt1: UNTAPPED
|
||
|
subopt2: thridstring
|
||
|
|
||
|
- subopt1: CONCERNED
|
||
|
|
||
|
- name: Task with suboptions as string
|
||
|
module:
|
||
|
secret: MARLIN
|
||
|
subopt_dict: str_sub_opt1=FLICK
|