databricks-cli/libs/dyn/yamlloader/testdata/anchor_05.yml

16 lines
230 B
YAML
Raw Normal View History

2023-10-20 12:56:59 +00:00
# 5. Using Anchors for List Items
# You can use anchors for list items too.
features: &FEATURES
- wifi
- bluetooth
phone1:
name: PhoneA
features: *FEATURES
phone2:
name: PhoneB
features:
- camera
- *FEATURES