summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/rule-avoid-implicit-pass.yml
blob: 248fc8c198c79f80b7f22e5d736e4130969e9a3f (plain)
1
2
3
4
5
6
7
8
9
---
- name: Example playbook
  hosts: localhost
  tasks:
    - name: Write file content
      ansible.builtin.copy:
        content: "Some {{ foo }}"
        dest: /tmp/foo.txt
        mode: "0600"