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:
parent
dcb167c10d
commit
f76b70af81
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user