23 lines
539 B
Text
23 lines
539 B
Text
/**
|
|
* The APIUser objects are used for authentication against the API.
|
|
*/
|
|
object ApiUser "root" {
|
|
password = "{%- include 'secure/passwords/icingaapi_root_password.txt' -%}"
|
|
// client_cn = ""
|
|
|
|
permissions = [ "*" ]
|
|
}
|
|
|
|
object ApiUser "monitoring" {
|
|
password = "{%- include 'secure/passwords/icingaapi_monitoring_password.txt' -%}"
|
|
// client_cn = ""
|
|
|
|
permissions = [ "*" ]
|
|
}
|
|
|
|
object ApiUser "director" {
|
|
password = "{%- include 'secure/passwords/icingaapi_director_password.txt' -%}"
|
|
// client_cn = ""
|
|
|
|
permissions = [ "*" ]
|
|
}
|