forked from TerryHowe/ansible-modules-hashivault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashivault_leader.py
44 lines (37 loc) · 1.17 KB
/
hashivault_leader.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
#!/usr/bin/python
from ansible.module_utils.hashivault import hashivault_argspec
from ansible.module_utils.hashivault import hashivault_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_leader
version_added: "3.16.4"
short_description: Hashicorp Vault leader module
description:
- Module to get leader information of Hashicorp Vault.
extends_documentation_fragment: hashivault
'''
EXAMPLES = '''
---
- hosts: localhost
tasks:
- hashivault_leader:
register: 'vault_leader'
- debug: msg="Leader is {{vault_leader.status.leader_address}}"
'''
def main():
argspec = hashivault_argspec()
module = hashivault_init(argspec)
result = hashivault_leader(module.params)
if result.get('failed'):
module.fail_json(**result)
else:
module.exit_json(**result)
@hashiwrapper
def hashivault_leader(params):
client = hashivault_client(params)
return {'status': client.sys.read_leader_status()}
if __name__ == '__main__':
main()