6c2585f0c8
The existing examples in the "Gotchas" section were rather simple. Expanded upon those to add some additional clarity around how the quoting in YAML works.
186 lines
5.7 KiB
ReStructuredText
186 lines
5.7 KiB
ReStructuredText
YAML Syntax
|
|
===========
|
|
|
|
This page provides a basic overview of correct YAML syntax, which is how Ansible
|
|
playbooks (our configuration management language) are expressed.
|
|
|
|
We use YAML because it is easier for humans to read and write than other common
|
|
data formats like XML or JSON. Further, there are libraries available in most
|
|
programming languages for working with YAML.
|
|
|
|
You may also wish to read :doc:`playbooks` at the same time to see how this
|
|
is used in practice.
|
|
|
|
|
|
YAML Basics
|
|
-----------
|
|
|
|
For Ansible, nearly every YAML file starts with a list.
|
|
Each item in the list is a list of key/value pairs, commonly
|
|
called a "hash" or a "dictionary". So, we need to know how
|
|
to write lists and dictionaries in YAML.
|
|
|
|
There's another small quirk to YAML. All YAML files (regardless of their association with Ansible or not) can optionally
|
|
begin with ``---`` and end with ``...``. This is part of the YAML format and indicates the start and end of a document.
|
|
|
|
All members of a list are lines beginning at the same indentation level starting with a ``"- "`` (a dash and a space)::
|
|
|
|
---
|
|
# A list of tasty fruits
|
|
fruits:
|
|
- Apple
|
|
- Orange
|
|
- Strawberry
|
|
- Mango
|
|
...
|
|
|
|
A dictionary is represented in a simple ``key: value`` form (the colon must be followed by a space)::
|
|
|
|
# An employee record
|
|
martin:
|
|
name: Martin D'vloper
|
|
job: Developer
|
|
skill: Elite
|
|
|
|
More complicated data structures are possible, such as lists of dictionaries, dictionaries whose values are lists or a mix of both::
|
|
|
|
# Employee records
|
|
- martin:
|
|
name: Martin D'vloper
|
|
job: Developer
|
|
skills:
|
|
- python
|
|
- perl
|
|
- pascal
|
|
- tabitha:
|
|
name: Tabitha Bitumen
|
|
job: Developer
|
|
skills:
|
|
- lisp
|
|
- fortran
|
|
- erlang
|
|
|
|
Dictionaries and lists can also be represented in an abbreviated form if you really want to::
|
|
|
|
---
|
|
martin: {name: Martin D'vloper, job: Developer, skill: Elite}
|
|
fruits: ['Apple', 'Orange', 'Strawberry', 'Mango']
|
|
|
|
.. _truthiness:
|
|
|
|
Ansible doesn't really use these too much, but you can also specify a boolean value (true/false) in several forms::
|
|
|
|
create_key: yes
|
|
needs_agent: no
|
|
knows_oop: True
|
|
likes_emacs: TRUE
|
|
uses_cvs: false
|
|
|
|
Values can span multiple lines using ``|`` or ``>``. Spanning multiple lines using a ``|`` will include the newlines. Using a ``>`` will ignore newlines; it's used to make what would otherwise be a very long line easier to read and edit.
|
|
In either case the indentation will be ignored.
|
|
Examples are::
|
|
|
|
include_newlines: |
|
|
exactly as you see
|
|
will appear these three
|
|
lines of poetry
|
|
|
|
ignore_newlines: >
|
|
this is really a
|
|
single line of text
|
|
despite appearances
|
|
|
|
|
|
Let's combine what we learned so far in an arbitrary YAML example.
|
|
This really has nothing to do with Ansible, but will give you a feel for the format::
|
|
|
|
---
|
|
# An employee record
|
|
name: Martin D'vloper
|
|
job: Developer
|
|
skill: Elite
|
|
employed: True
|
|
foods:
|
|
- Apple
|
|
- Orange
|
|
- Strawberry
|
|
- Mango
|
|
languages:
|
|
perl: Elite
|
|
python: Elite
|
|
pascal: Lame
|
|
education: |
|
|
4 GCSEs
|
|
3 A-Levels
|
|
BSc in the Internet of Things
|
|
|
|
That's all you really need to know about YAML to start writing `Ansible` playbooks.
|
|
|
|
Gotchas
|
|
-------
|
|
|
|
While YAML is generally friendly, the following is going to result in a YAML syntax error::
|
|
|
|
foo: somebody said I should put a colon here: so I did
|
|
|
|
windows_drive: c:
|
|
|
|
...but this will work::
|
|
|
|
windows_path: c:\windows
|
|
|
|
You will want to quote hash values using colons followed by a space or the end of the line::
|
|
|
|
foo: "somebody said I should put a colon here: so I did"
|
|
|
|
windows_drive: "c:"
|
|
|
|
...and then the colon will be preserved.
|
|
|
|
Further, Ansible uses "{{ var }}" for variables. If a value after a colon starts
|
|
with a "{", YAML will think it is a dictionary, so you must quote it, like so::
|
|
|
|
foo: "{{ variable }}"
|
|
|
|
If your value starts with a quote the entire value must be quoted, not just part of it. Here are some additional examples of how to properly quote things::
|
|
|
|
foo: "{{ variable }}/additional/string/literal"
|
|
foo2: "{{ variable }}\\backslashes\\are\\also\\special\\characters"
|
|
foo3: "even if it's just a string literal it must all be quoted"
|
|
|
|
Not valid::
|
|
|
|
foo: "E:\\path\\"rest\\of\\path
|
|
|
|
The same applies for strings that start or contain any YAML special characters ``[] {} : > |`` .
|
|
|
|
Boolean conversion is helpful, but this can be a problem when you want a literal `yes` or other boolean values as a string.
|
|
In these cases just use quotes::
|
|
|
|
non_boolean: "yes"
|
|
other_string: "False"
|
|
|
|
|
|
YAML converts certain strings into floating-point values, such as the string
|
|
`1.0`. If you need to specify a version number (in a requirements.yml file, for
|
|
example), you will need to quote the value if it looks like a floating-point
|
|
value::
|
|
|
|
version: "1.0"
|
|
|
|
|
|
.. seealso::
|
|
|
|
:doc:`playbooks`
|
|
Learn what playbooks can do and how to write/run them.
|
|
`YAMLLint <http://yamllint.com/>`_
|
|
YAML Lint (online) helps you debug YAML syntax if you are having problems
|
|
`Github examples directory <https://github.com/ansible/ansible-examples>`_
|
|
Complete playbook files from the github project source
|
|
`Wikipedia YAML syntax reference <https://en.wikipedia.org/wiki/YAML>`_
|
|
A good guide to YAML syntax
|
|
`Mailing List <http://groups.google.com/group/ansible-project>`_
|
|
Questions? Help? Ideas? Stop by the list on Google Groups
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
#ansible IRC chat channel
|
|
|