forked from TerryHowe/ansible-modules-hashivault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hashivault_cluster_status.py
65 lines (58 loc) · 2.06 KB
/
hashivault_cluster_status.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
#!/usr/bin/env 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_cluster_status
version_added: "3.16.4"
short_description: Hashicorp Vault cluster status module
description:
- Module to get cluster status of Hashicorp Vault.
options:
standby_ok:
description:
- Specifies if being a standby should still return the active status code instead of the standby status code
default: False
method:
description:
- Method to use to get cluster status, supported methods are HEAD (produces 000 (empty body)) and GET (produces
000 application/json)
default: HEAD
extends_documentation_fragment: hashivault
'''
EXAMPLES = '''
---
- hosts: localhost
tasks:
- hashivault_cluster_status:
register: 'vault_cluster_status'
- debug: msg="Cluster is initialized: {{vault_cluster_status.status.initialized}}"
'''
def main():
argspec = hashivault_argspec()
argspec['standby_ok'] = dict(required=False, type='bool', default=True)
argspec['method'] = dict(required=False, default="HEAD")
module = hashivault_init(argspec)
result = hashivault_cluster_status(module.params)
if result.get('failed'):
module.fail_json(**result)
else:
module.exit_json(**result)
@hashiwrapper
def hashivault_cluster_status(params):
client = hashivault_client(params)
response = client.sys.read_health_status(standby_ok=params.get("standby_ok"), method=params.get("method"))
from requests.models import Response
if isinstance(response, Response):
try:
status = response.json()
except Exception:
status = response.content
else:
status = response
return {'status': status}
if __name__ == '__main__':
main()