Difference between revisions of "YAML"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
===Syntax=== | ===Syntax=== | ||
== Key Value Pairs == | |||
* "microservice" becomes an object with directives under it. | * "microservice" becomes an object with directives under it. | ||
microservice: | microservice: | ||
Line 11: | Line 11: | ||
version: 1.7 | version: 1.7 | ||
== Create a List == | |||
microservice: #list name | microservice: #list name | ||
- app: user-auth #items of the list | - app: user-auth #items of the list | ||
Line 26: | Line 27: | ||
#can be written as | #can be written as | ||
version: [1.9, 2.0, 2.1] | version: [1.9, 2.0, 2.1] | ||
[[Category:Ansible]] |
Revision as of 14:50, 9 August 2022
YAML
Serialization Language
Syntax
Key Value Pairs
- "microservice" becomes an object with directives under it.
microservice: app: user-auth port: 9000 #comment version: 1.7
Create a List
microservice: #list name - app: user-auth #items of the list port: 9000 #comment version: 1.7 deployed: true #boolean value - app: shopping-cart port: 9002 version: - 1.9 - 2.0 - 2.1 #can be written as version: [1.9, 2.0, 2.1]