summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/fqcn.transformed.yml
blob: 2b758bc2b060e2e88640477f8458d18388b836d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: FQCN transform test file
  hosts: localhost
  tasks:
    - name: Rewrite shell to ansible.builtin.shell via the fqcn[action-core] transform # noqa: command-instead-of-shell
      ansible.builtin.shell: echo This rule should get matched by the fqcn[action-core] rule
      changed_when: false
    - name: Rewrite openssh_keypair to community.crypto.openssh_keypair via the fqcn[action] transform
      community.crypto.openssh_keypair:
        path: /tmp/supersecret
    - name: Rewrite ansible.builtin.synchronize to ansible.posix.synchronize via the fqcn[canonical] transform
      ansible.posix.synchronize:
        src: dummy
        dest: dummy2
        owner: false
        group: false