1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-21 23:58:06 +00:00

chore: move db var to savePgsql function

This commit is contained in:
luisserra 2022-03-28 21:57:06 +01:00
parent dcb167c10d
commit f76b70af81

View File

@ -20,6 +20,7 @@ type PsqlConnInfo struct {
Password string
Schema string
}
func getPsqlConnInfo() (PsqlConnInfo, error) {
var host string
if value := viper.GetString("PGSQL_HOST"); value != "" {
@ -107,6 +108,8 @@ func savePgsql(jsonInfo string) {
exitWithError(err)
}
var db *gorm.DB
if PsqlConnInfo.Schema == "" {
db, err = gorm.Open(postgres.Open(PsqlConnInfo.toString()), &gorm.Config{})
} else {