summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/rule-no-free-form-fail.yml
blob: dea98b842851c95ca08ba37abfec99221cdf15fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Example with discouraged free-form syntax
  hosts: localhost
  tasks:
    - name: Create a placefolder file
      ansible.builtin.command: chdir=/tmp touch foo # <-- don't use shorthand
      changed_when: false

    - name: Use raw to echo
      ansible.builtin.raw: executable=/bin/bash echo foo # <-- don't use executable=
      changed_when: false

    - name: Testing anything else passed to raw except for string
      ansible.builtin.raw:
        args: "123"
      changed_when: false