Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silenius/b405f846c3c5274aece5a046732624a8 to your computer and use it in GitHub Desktop.
Save silenius/b405f846c3c5274aece5a046732624a8 to your computer and use it in GitHub Desktop.
################ VERSION 1
### pillar/top.sls ###
base:
somemachine:
- postgresql
- postgresql.v10
### pillar/postgresql/init.sls ###
postgresql:
somekey: 123
### pillar/postgresql/v10.sls ###
postgresql:
somekey: 456
################ VERSION 2
### pillar/top.sls ###
base:
somemachine:
- postgresql.v10
### pillar/postgresql/init.sls ###
postgresql:
somekey: 123
### pillar/postgresql/v10.sls ###
include:
- postgresql
postgresql:
somekey: 456
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment