summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/transform-no-free-form.transformed.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/playbooks/transform-no-free-form.transformed.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/examples/playbooks/transform-no-free-form.transformed.yml b/examples/playbooks/transform-no-free-form.transformed.yml
new file mode 100644
index 0000000..e947c34
--- /dev/null
+++ b/examples/playbooks/transform-no-free-form.transformed.yml
@@ -0,0 +1,30 @@
+---
+- name: Example with discouraged free-form syntax
+ hosts: localhost
+ tasks:
+ - name: Create a placefolder file
+ ansible.builtin.command: # <-- don't use shorthand
+ chdir: /tmp
+ cmd: touch foo
+ changed_when: false
+
+ - name: Create a placefolder file
+ ansible.builtin.command: # <-- command can also go first
+ chdir: /tmp
+ cmd: touch bar
+ changed_when: false
+
+ - name: Use raw to echo
+ ansible.builtin.raw: echo foo # <-- don't use executable=
+ args:
+ executable: /bin/bash
+ changed_when: false
+
+ - name: Example task with usage for '=' as module params
+ ansible.builtin.debug:
+ msg: "'Hello there world'"
+ changed_when: false
+
+ - name: Task that has a non-debug string with spaces
+ ansible.builtin.set_fact:
+ foo: '"String with spaces"'