forked from infra/ansible
14 lines
275 B
Plaintext
14 lines
275 B
Plaintext
|
/**
|
||
|
* The db_ido_pgsql library implements IDO functionality
|
||
|
* for PostgreSQL.
|
||
|
*/
|
||
|
|
||
|
library "db_ido_pgsql"
|
||
|
|
||
|
object IdoPgsqlConnection "ido-pgsql" {
|
||
|
user = "{{ icinga_dbuser}}",
|
||
|
password = "{{ icinga_dbpass }}",
|
||
|
host = "localhost",
|
||
|
database = "{{ icinga_dbname }}"
|
||
|
}
|