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

16 lines
230 B
YAML

# 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