Difference between revisions of "Introduction to YAML"
(Created page with "= What is YAML? = * YAML stands for "YAML Ain’t markup language" * It is a human-readable data serialization language that is used in Ansible to package output and its playb...") |
|||
Line 1: | Line 1: | ||
+ | [[Category: rchan]] | ||
= What is YAML? = | = What is YAML? = | ||
* YAML stands for "YAML Ain’t markup language" | * YAML stands for "YAML Ain’t markup language" |
Revision as of 18:04, 22 November 2019
What is YAML?
- YAML stands for "YAML Ain’t markup language"
- It is a human-readable data serialization language that is used in Ansible to package output and its playbooks
What are the major components in YAML?
- declarations: name: 'yum'
- lists:
- - 'item_a'
- - 'item_b'
- - 'item_c'
- associative arrays:
- item_a:
- name: 'Name A'
- id: '12345678'
- item_b:
- name: 'Name B'
- id: '98765432'
- item_a: