Merging environment configs

YAML allows:

default_env: &default_env
  SCOPE: 'read'
  TABLE: 'apple'

dev:
  <<: *default_env
  TABLE: 'banana'
  PASSWORD: 'my-password'

If you want the longer version I wrote it here

3 Likes