mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #17051 from ferrants/patch-2
Update playbooks_lookups.rst
This commit is contained in:
commit
89ce1fc917
1 changed files with 18 additions and 0 deletions
|
@ -237,6 +237,24 @@ You can specify regions or tables to fetch secrets from::
|
||||||
|
|
||||||
- name: "Test credstash lookup plugin -- get the company's github password"
|
- name: "Test credstash lookup plugin -- get the company's github password"
|
||||||
debug: msg="Credstash lookup! {{ lookup('credstash', 'company-github-password', table='company-passwords') }}"
|
debug: msg="Credstash lookup! {{ lookup('credstash', 'company-github-password', table='company-passwords') }}"
|
||||||
|
|
||||||
|
|
||||||
|
If you use the context feature when putting your secret, you can get it by passing a dictionary to the context option like this::
|
||||||
|
|
||||||
|
---
|
||||||
|
- name: test
|
||||||
|
hosts: localhost
|
||||||
|
vars:
|
||||||
|
context:
|
||||||
|
app: my_app
|
||||||
|
environment: production
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: "Test credstash lookup plugin -- get the password with a context passed as a variable"
|
||||||
|
debug: msg="{{ lookup('credstash', 'some-password', context=context) }}"
|
||||||
|
|
||||||
|
- name: "Test credstash lookup plugin -- get the password with a context defined here"
|
||||||
|
debug: msg="{{ lookup('credstash', 'some-password', context=dict(app='my_app', environment='production')) }}"
|
||||||
|
|
||||||
If you're not using 2.0 yet, you can do something similar with the credstash tool and the pipe lookup (see below)::
|
If you're not using 2.0 yet, you can do something similar with the credstash tool and the pipe lookup (see below)::
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue