Repository URL to install this package:
Version:
6.0.0 ▾
|
---
- hosts: localhost
tasks:
- name: Lookup variable in Conjur
debug:
msg: "{{ lookup('cyberark.conjur.conjur_variable', '/path/to/secret') }}"
- name: Lookup variable in Conjur to not validate certs (in case of self-signed)
debug:
msg: "{{ lookup('cyberark.conjur.conjur_variable', '/path/to/secret', validate_certs=false) }}"