We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi icinga2::object::apiuser expects an array of strings or hashes for it's permission argument. The example
permissions = [ { permission = "objects/query/Host" filter = {{ regex("^Linux", host.vars.os) }} }, { permission = "objects/query/Service" filter = {{ regex("^Linux", service.vars.os) }} } ]
does neither and as such doesn't work. I suggest changing it to:
permissions => [ { permission => "objects/query/Host" , filter => "{{ regex(\"^Linux\", host.vars.os) }}" }, { permission => "objects/query/Service" , filter => "{{ regex(\"^Linux\", service.vars.os) }}" } ]
The text was updated successfully, but these errors were encountered:
fix #448 Incorrect example for icinga2::object::apiuser
b6132e2
lbetz
No branches or pull requests
hi
icinga2::object::apiuser expects an array of strings or hashes for it's permission argument. The example
does neither and as such doesn't work.
I suggest changing it to:
The text was updated successfully, but these errors were encountered: