mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
12 lines
467 B
YAML
12 lines
467 B
YAML
![]() |
# This file allows to get PostgreSQL version and upstream repo settings
|
||
|
# early from Pillar to set correct lookup dictionaty items
|
||
|
|
||
|
{% import_yaml "postgres/defaults.yaml" as defaults %}
|
||
|
|
||
|
use_upstream_repo: {{ salt['pillar.get']('postgres:use_upstream_repo',
|
||
|
defaults.postgres.use_upstream_repo) }}
|
||
|
version: {{ salt['pillar.get']('postgres:version',
|
||
|
defaults.postgres.version) }}
|
||
|
|
||
|
# vim: ft=sls
|