summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/transform-key-order-play.transformed.yml
blob: 030364d8a7f42b2af50d4ff7784f29808ea3bfa1 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: This is a playbook # <-- name key should be the first one
  hosts: localhost
  tasks:
    - name: A block
      when: true
      block:
        - name: Display a message
          ansible.builtin.debug:
            msg: Hello world!