-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #399 from adawalli/list_group_aliases
Add support for Listing Group Aliases
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
ansible/modules/hashivault/hashivault_identity_group_alias_list.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/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_identity_group_alias_list | ||
version_added: "4.7.1" | ||
short_description: Hashicorp Vault group alias list | ||
description: | ||
- Module to list group aliases from Hashicorp Vault. | ||
options: | ||
mount_point: | ||
description: | ||
- mount point for identity secrets engine | ||
default: identity | ||
extends_documentation_fragment: hashivault | ||
''' | ||
EXAMPLES = ''' | ||
--- | ||
- hosts: localhost | ||
tasks: | ||
- hashivault_identity_group_alias_list: | ||
register: 'vault_group_alias_list' | ||
- debug: msg="Group Aliases are {{vault_group_alias_list.keys}}" | ||
''' | ||
|
||
|
||
def main(): | ||
argspec = hashivault_argspec() | ||
argspec['mount_point'] = dict(required=False, type='str', default='identity') | ||
argspec['method'] = dict(required=False, type='str', default='GET') | ||
module = hashivault_init(argspec) | ||
result = hashivault_identity_group_alias_list(module.params) | ||
if result.get('failed'): | ||
module.fail_json(**result) | ||
else: | ||
module.exit_json(**result) | ||
|
||
|
||
@hashiwrapper | ||
def hashivault_identity_group_alias_list(params): | ||
client = hashivault_auth_client(params) | ||
result = client.secrets.identity.list_group_aliases(mount_point=params.get('mount_point'), method=params.get('method').upper()) | ||
if isinstance(result, dict): | ||
result = result.get('data', result) | ||
return {'changed': False, 'group_aliases': result} | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters