mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
11 lines
176 B
YAML
11 lines
176 B
YAML
---
|
|
- hosts: all
|
|
|
|
vars:
|
|
my_color_choice: blue
|
|
|
|
tasks:
|
|
- name: "Verify {{ my_color_choice }} is a form of blue."
|
|
assert:
|
|
that: my_color_choice is blue
|