Difference between revisions of "Introduction to YAML"

From CDOT Wiki
Jump to: navigation, search
(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...")
(No difference)

Revision as of 18:03, 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'