What is YAML?

a data serialization language just like XML, JSON

Serialization language?

standard format to transfer data

YAML format compared to others

human readable and intuitive

YAML Use Cases

Basic Syntax

# this is yaml file
microservice:  # makes object
	- app: user-authentication  # first element of list
	  port: 9000
	  version: 1.7
    deployed: false  # true / false || on / off
  - app: login  # second element of list
    port: 9001
    versions: [1.5, 1,9]  # list too
    deployed: true