forked from TerryHowe/ansible-modules-hashivault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashivault_token_lookup.py
66 lines (58 loc) · 2.09 KB
/
hashivault_token_lookup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
from ansible.module_utils.hashivault import hashivault_argspec
from ansible.module_utils.hashivault import hashivault_auth_client
from ansible.module_utils.hashivault import hashivault_init
from ansible.module_utils.hashivault import hashiwrapper
ANSIBLE_METADATA = {'status': ['stableinterface'], 'supported_by': 'community', 'version': '1.1'}
DOCUMENTATION = '''
---
module: hashivault_token_lookup
version_added: "3.3.0"
short_description: Hashicorp Vault token lookup module
description:
- Module to look up / check for existence of tokens in Hashicorp Vault.
options:
lookup_token:
description:
- token to lookup if different from auth token
default: to authentication token
accessor:
description:
- If set, lookups will use the this accessor token
wrap_ttl:
description:
- Indicates that the response should be wrapped in a cubbyhole token with the requested TTL.
extends_documentation_fragment: hashivault
'''
EXAMPLES = '''
---
- hosts: localhost
tasks:
- name: "Lookup token"
hashivault_token_lookup:
lookup_token: "{{client_token}}"
register: "vault_token_lookup"
'''
def main():
argspec = hashivault_argspec()
argspec['lookup_token'] = dict(required=False, type='str', no_log=True)
argspec['accessor'] = dict(required=False, type='bool', default=False)
argspec['wrap_ttl'] = dict(required=False, type='int')
module = hashivault_init(argspec)
result = hashivault_token_lookup(module.params)
if result.get('failed'):
module.fail_json(**result)
else:
module.exit_json(**result)
@hashiwrapper
def hashivault_token_lookup(params):
client = hashivault_auth_client(params)
accessor = params.get('accessor')
lookup_token = params.get('lookup_token')
if lookup_token is None:
lookup_token = params.get('token')
wrap_ttl = params.get('wrap_ttl')
lookup = client.lookup_token(token=lookup_token, accessor=accessor, wrap_ttl=wrap_ttl)
return {'changed': False, 'lookup': lookup}
if __name__ == '__main__':
main()