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
Enabling Audit Logs Device to be ready for any logging collector like Datadog, I can not find that in the documentation yet.
Is there any support for such feature using Ansible Role ?
The text was updated successfully, but these errors were encountered:
@AlyRagab I don't believe you can do it using the role.
Its pretty easy to do it using the uri module though after the role has run
uri
Something like:
--- - name: Enable audit log uri: url: https://127.0.0.1:8200/v1/sys/audit/file validate_certs: false headers: X-Vault-Token: "{{ lookup('env', 'VAULT_TOKEN') }}" follow_redirects: all method: PUT status_code: - 204 - 400 # path already in use body: type: "file" options: file_path: "{{ vault_audit_log_path }}" mode: "0660" body_format: json
Sorry, something went wrong.
No branches or pull requests
Enabling Audit Logs Device to be ready for any logging collector like Datadog, I can not find that in the documentation yet.
Is there any support for such feature using Ansible Role ?
The text was updated successfully, but these errors were encountered: