File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed
Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22name : pgdog
3- version : v0.49
4- appVersion : " 0.1.34 "
3+ version : v0.50
4+ appVersion : " 0.1.36 "
Original file line number Diff line number Diff line change 33[[users]]
44name = {{ .name | quote }}
55database = {{ .database | quote }}
6- {{- if .password }}
6+ {{- if .passwords }}
7+ passwords = {{ .passwords | toToml }}
8+ {{- else if .password }}
79password = {{ .password | quote }}
810{{- end }}
911{{- if .poolSize }}
Original file line number Diff line number Diff line change 1+ # Test multiple passwords per user
2+ databases :
3+ - name : primary
4+ host : postgres-primary.example.com
5+ port : 5432
6+
7+ users :
8+ - name : app_user
9+ database : primary
10+ passwords :
11+ - " one"
12+ - " two"
13+ - name : admin_user
14+ database : primary
15+ password : single_password
You can’t perform that action at this time.
0 commit comments