mirror of
https://github.com/esphome/esphome.git
synced 2026-06-24 14:37:04 +00:00
22 lines
660 B
YAML
22 lines
660 B
YAML
# this file is included by 07-include_hierarchy.input.yaml
|
|
level1:
|
|
a: ${a} # top-level substitution
|
|
b: ${b} # top-level substitution
|
|
c: ${c} # from vars when including
|
|
d: ${d} # from vars when including
|
|
e: ${e} # undefined at this level
|
|
f: ${f} # undefined at this level
|
|
g: ${g} # undefined at this level
|
|
h: ${h} # undefined at this level
|
|
i: ${i} # undefined at this level
|
|
j: ${j} # undefined at this level
|
|
x: ${x} # from vars when including, calculated
|
|
y: ${y} # from vars when including, calculated
|
|
level2:
|
|
- !include
|
|
file: level2_package.yaml
|
|
vars:
|
|
e: ${c*2}
|
|
f: ${d*2}
|
|
x: ${x+1}
|