config.go

Copyright 2024 Red Hat, Inc

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

package
postgres

StorageConfiguration represents common configuration of data storage

type
StorageConfiguration
struct
{
Driver
string
`mapstructure:"db_driver" toml:"db_driver"`
PGUsername
string
`mapstructure:"pg_username" toml:"pg_username"`
PGPassword
string
`mapstructure:"pg_password" toml:"pg_password"`
PGHost
string
`mapstructure:"pg_host" toml:"pg_host"`
PGPort
int
`mapstructure:"pg_port" toml:"pg_port"`
PGDBName
string
`mapstructure:"pg_db_name" toml:"pg_db_name"`
PGParams
string
`mapstructure:"pg_params" toml:"pg_params"`
LogSQLQueries
bool
`mapstructure:"log_sql_queries" toml:"log_sql_queries"`
}