vultr: vultr_user_facts -> info (#57564)
* vultr: deprecate vultr_user_facts * vultr: vultr_user_facts: rename to info * vultr: adjust tests * vultr: new vultr_user_info module
This commit is contained in:
parent
f7e5494a67
commit
0ca50c7d6f
6 changed files with 181 additions and 34 deletions
|
@ -7,7 +7,7 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
'status': ['preview'],
|
'status': ['deprecated'],
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
|
@ -18,6 +18,10 @@ description:
|
||||||
- Gather facts about users available in Vultr.
|
- Gather facts about users available in Vultr.
|
||||||
version_added: "2.7"
|
version_added: "2.7"
|
||||||
author: "Yanis Guenane (@Spredzy)"
|
author: "Yanis Guenane (@Spredzy)"
|
||||||
|
deprecated:
|
||||||
|
removed_in: "2.12"
|
||||||
|
why: Transformed into an info module.
|
||||||
|
alternative: Use M(vultr_user_info) instead.
|
||||||
extends_documentation_fragment: vultr
|
extends_documentation_fragment: vultr
|
||||||
'''
|
'''
|
||||||
|
|
140
lib/ansible/modules/cloud/vultr/vultr_user_info.py
Normal file
140
lib/ansible/modules/cloud/vultr/vultr_user_info.py
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
||||||
|
# Copyright (c) 2019, René Moser <mail@renemoser.net>
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
DOCUMENTATION = r'''
|
||||||
|
---
|
||||||
|
module: vultr_user_info
|
||||||
|
short_description: Get infos about the Vultr user available.
|
||||||
|
description:
|
||||||
|
- Get infos about users available in Vultr.
|
||||||
|
version_added: "2.9"
|
||||||
|
author:
|
||||||
|
- "Yanis Guenane (@Spredzy)"
|
||||||
|
- "René Moser (@resmo)"
|
||||||
|
extends_documentation_fragment: vultr
|
||||||
|
'''
|
||||||
|
|
||||||
|
EXAMPLES = r'''
|
||||||
|
- name: Get Vultr user infos
|
||||||
|
vultr_user_info:
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Print the infos
|
||||||
|
debug:
|
||||||
|
var: result.vultr_user_info
|
||||||
|
'''
|
||||||
|
|
||||||
|
RETURN = r'''
|
||||||
|
---
|
||||||
|
vultr_api:
|
||||||
|
description: Response from Vultr API with a few additions/modification
|
||||||
|
returned: success
|
||||||
|
type: complex
|
||||||
|
contains:
|
||||||
|
api_account:
|
||||||
|
description: Account used in the ini file to select the key
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: default
|
||||||
|
api_timeout:
|
||||||
|
description: Timeout used for the API requests
|
||||||
|
returned: success
|
||||||
|
type: int
|
||||||
|
sample: 60
|
||||||
|
api_retries:
|
||||||
|
description: Amount of max retries for the API requests
|
||||||
|
returned: success
|
||||||
|
type: int
|
||||||
|
sample: 5
|
||||||
|
api_endpoint:
|
||||||
|
description: Endpoint used for the API requests
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: "https://api.vultr.com"
|
||||||
|
vultr_user_info:
|
||||||
|
description: Response from Vultr API as list
|
||||||
|
returned: available
|
||||||
|
type: complex
|
||||||
|
contains:
|
||||||
|
id:
|
||||||
|
description: ID of the user.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: 5904bc6ed9234
|
||||||
|
api_key:
|
||||||
|
description: API key of the user.
|
||||||
|
returned: only after resource was created
|
||||||
|
type: str
|
||||||
|
sample: 567E6K567E6K567E6K567E6K567E6K
|
||||||
|
name:
|
||||||
|
description: Name of the user.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: john
|
||||||
|
email:
|
||||||
|
description: Email of the user.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: "john@exmaple.com"
|
||||||
|
api_enabled:
|
||||||
|
description: Whether the API is enabled or not.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
|
sample: true
|
||||||
|
acls:
|
||||||
|
description: List of ACLs of the user.
|
||||||
|
returned: success
|
||||||
|
type: list
|
||||||
|
sample: [ manage_users, support, upgrade ]
|
||||||
|
'''
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible.module_utils.vultr import (
|
||||||
|
Vultr,
|
||||||
|
vultr_argument_spec,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class AnsibleVultrUserInfo(Vultr):
|
||||||
|
|
||||||
|
def __init__(self, module):
|
||||||
|
super(AnsibleVultrUserInfo, self).__init__(module, "vultr_user_info")
|
||||||
|
|
||||||
|
self.returns = {
|
||||||
|
"USERID": dict(key='id'),
|
||||||
|
"acls": dict(),
|
||||||
|
"api_enabled": dict(),
|
||||||
|
"email": dict(),
|
||||||
|
"name": dict()
|
||||||
|
}
|
||||||
|
|
||||||
|
def get_regions(self):
|
||||||
|
return self.api_query(path="/v1/user/list")
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
argument_spec = vultr_argument_spec()
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=argument_spec,
|
||||||
|
supports_check_mode=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
user_info = AnsibleVultrUserInfo(module)
|
||||||
|
result = user_info.get_result(user_info.get_regions())
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
|
@ -1,31 +0,0 @@
|
||||||
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
||||||
---
|
|
||||||
- name: Create the user
|
|
||||||
vultr_user:
|
|
||||||
name: '{{ user_name }}'
|
|
||||||
email: '{{ user_email }}'
|
|
||||||
password: '{{ user_password }}'
|
|
||||||
acls: '{{ user_acls }}'
|
|
||||||
|
|
||||||
- name: test gather vultr user facts in check mode
|
|
||||||
vultr_user_facts:
|
|
||||||
check_mode: yes
|
|
||||||
|
|
||||||
- name: verify test gather vultr user facts in check mode
|
|
||||||
assert:
|
|
||||||
that:
|
|
||||||
- ansible_facts.vultr_user_facts|selectattr('name','equalto','{{ user_name }}') | list | count == 1
|
|
||||||
|
|
||||||
- name: test gather vultr user facts
|
|
||||||
vultr_user_facts:
|
|
||||||
|
|
||||||
- name: verify test gather vultr user facts
|
|
||||||
assert:
|
|
||||||
that:
|
|
||||||
- ansible_facts.vultr_user_facts|selectattr('name','equalto','{{ user_name }}') | list | count == 1
|
|
||||||
|
|
||||||
- name: Delete the user
|
|
||||||
vultr_user:
|
|
||||||
name: '{{ user_name }}'
|
|
||||||
state: absent
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
vultr_resource_prefix: "vultr-test-prefix"
|
vultr_resource_prefix: "vultr-test-prefix"
|
||||||
user_name: "{{ vultr_resource_prefix }}_user"
|
user_name: "{{ vultr_resource_prefix }}_user"
|
||||||
user_email: mytestuser@example.com
|
user_email: mytestuser-{{ vultr_resource_prefix }}@example.com
|
||||||
user_password: aP4ssw0rd!
|
user_password: "{{ vultr_resource_prefix }}aP4ssw0rd!"
|
||||||
user_acls:
|
user_acls:
|
||||||
- upgrade
|
- upgrade
|
||||||
- dns
|
- dns
|
34
test/integration/targets/vultr_user_info/tasks/main.yml
Normal file
34
test/integration/targets/vultr_user_info/tasks/main.yml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
||||||
|
# Copyright (c) 2019, René Moser <mail@renemoser.net>
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
---
|
||||||
|
- name: Create the user
|
||||||
|
vultr_user:
|
||||||
|
name: '{{ user_name }}'
|
||||||
|
email: '{{ user_email }}'
|
||||||
|
password: '{{ user_password }}'
|
||||||
|
acls: '{{ user_acls }}'
|
||||||
|
|
||||||
|
- name: test get vultr user info in check mode
|
||||||
|
vultr_user_info:
|
||||||
|
register: result
|
||||||
|
check_mode: yes
|
||||||
|
|
||||||
|
- name: verify test get vultr user info in check mode
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- result.vultr_user_info|selectattr('name','equalto','{{ user_name }}') | list | count == 1
|
||||||
|
|
||||||
|
- name: test get vultr user info
|
||||||
|
vultr_user_info:
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: verify test get vultr user info
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- result.vultr_user_info|selectattr('name','equalto','{{ user_name }}') | list | count == 1
|
||||||
|
|
||||||
|
- name: Delete the user
|
||||||
|
vultr_user:
|
||||||
|
name: '{{ user_name }}'
|
||||||
|
state: absent
|
Loading…
Reference in a new issue