Files
offline_kubespray/collection/cyberark/conjur/examples/test.yml
ByeonJungHun 360c6eef4a offline 작업
2024-02-19 16:02:29 +09:00

13 lines
392 B
YAML

---
- 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) }}"