-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathhashivault_pki_cert_list.py
executable file
·68 lines (57 loc) · 1.78 KB
/
hashivault_pki_cert_list.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
67
68
#!/usr/bin/python
from ansible.module_utils.hashivault import hashivault_auth_client
from ansible.module_utils.hashivault import hashivault_argspec
from ansible.module_utils.hashivault import hashivault_init
from ansible.module_utils.hashivault import hashiwrapper
ANSIBLE_METADATA = {'status': ['preview'], 'supported_by': 'community', 'version': '1.1'}
DOCUMENTATION = r'''
---
module: hashivault_pki_cert_list
version_added: "4.5.0"
short_description: Hashicorp Vault PKI List Certificates
description:
- This module returns a list of the current certificates by serial number only.
options:
mount_point:
default: pki
description:
- location where secrets engine is mounted. also known as path
extends_documentation_fragment:
- hashivault
'''
EXAMPLES = r'''
---
- hosts: localhost
tasks:
- hashivault_pki_cert_list:
mount_point: pki
register: roles_list
- debug: msg="{{ roles_list.data }}"
'''
RETURN = r'''
---
data:
description: list of roles, if pki engine has no roles will return empty list
returned: success
type: list
'''
def main():
argspec = hashivault_argspec()
argspec['mount_point'] = dict(required=False, type='str', default='pki')
module = hashivault_init(argspec)
result = hashivault_pki_cert_list(module)
if result.get('failed'):
module.fail_json(**result)
else:
module.exit_json(**result)
@hashiwrapper
def hashivault_pki_cert_list(module):
params = module.params
client = hashivault_auth_client(params)
mount_point = params.get('mount_point').strip('/')
try:
return {'data': client.secrets.pki.list_certificates(mount_point=mount_point).get('data').get('keys')}
except Exception:
return {'data': []}
if __name__ == '__main__':
main()