| 1234567891011121314151617181920212223242526272829303132333435363738 |
- all:
- hostname: all
- name: thisname
- db:
- host: 127.0.0.1
- user: username
- pass: password
- name: live
- one:
- two:
- three: multi
- staging:
- hostname: staging
- db:
- name: dbstaging
- debug:
- _extends: all
- debug:
- hostname: debug
- debug: 1
- values:
- changed: 1
- db:
- name: dbdebug
- special:
- no:
- null:
- false:
- zero: 0
- _extends: all
- other_staging:
- only_in: otherStaging
- db:
- pass: anotherpwd
- _extends: staging
- extendserror:
- testing: 123
- _extends: notexistent
|