summaryrefslogtreecommitdiffstats
path: root/examples/roles/name_casing/tasks/main.yml
blob: 7bf73fff0c306a91d82b24c886bd680fc87d3795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: Test nested tasks within block and always
  block:
    - name: test1
      ansible.builtin.debug:
        msg: Foo

    - name: Test2
      ansible.builtin.debug:
        msg: Bar

  always:
    - name: from always block to be auto fixed as name[casing] scenario
      ansible.builtin.debug:
        msg: Baz