playbooks_reuse_roles.rst long and shorthand example actually made equivalent. (#48339)

pull/48443/head
Andreas Krüger 6 years ago committed by Alicia Cozine
parent 42c6ed7078
commit e2bba149d6

@ -173,9 +173,11 @@ Finally, you may wish to assign tags to the tasks inside the roles you specify.
- hosts: webservers
roles:
- role: bar
tags: ["foo"]
# using YAML shorthand, this is equivalent to the above
- role: foo
tags:
- bar
- baz
# using YAML shorthand, this is equivalent to the above:
- { role: foo, tags: ["bar", "baz"] }
Or, again, using the newer syntax::

Loading…
Cancel
Save