blob: c9afa1bfde5b1a0296373c65acc4010a212334e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- 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) }}"
|