Skip to content

Instantly share code, notes, and snippets.

@geerlingguy
Last active April 21, 2022 06:00
Show Gist options
  • Save geerlingguy/51e2495131ef91e4059c6c47bd2d213b to your computer and use it in GitHub Desktop.
Save geerlingguy/51e2495131ef91e4059c6c47bd2d213b to your computer and use it in GitHub Desktop.
# In YAML, this...
something:
- { name: test.example }
# ...is the same as this:
something:
- name: test.example
# And this:
something:
- {
name: test.example,
color: blue
}
- {
name: another.example,
color: yellow
}
# ...is the same as this:
something:
- name: test.example
color: blue
- name: another.example
color: yellow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment