2015-10-20 17:29:41 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
2017-10-09 16:56:26 +00:00
|
|
|
# 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
|
|
|
|
|
2015-10-20 17:29:41 +00:00
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2016-12-06 10:35:05 +00:00
|
|
|
|
2015-10-20 17:29:41 +00:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: os_user
|
|
|
|
short_description: Manage OpenStack Identity Users
|
|
|
|
extends_documentation_fragment: openstack
|
2017-03-09 16:20:25 +00:00
|
|
|
author: David Shrewsbury
|
2015-10-20 17:29:41 +00:00
|
|
|
version_added: "2.0"
|
|
|
|
description:
|
|
|
|
- Manage OpenStack Identity users. Users can be created,
|
|
|
|
updated or deleted using this module. A user will be updated
|
|
|
|
if I(name) matches an existing user and I(state) is present.
|
|
|
|
The value for I(name) cannot be updated without deleting and
|
|
|
|
re-creating the user.
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Username for the user
|
|
|
|
required: true
|
|
|
|
password:
|
|
|
|
description:
|
|
|
|
- Password for the user
|
2016-11-04 16:38:17 +00:00
|
|
|
update_password:
|
|
|
|
default: always
|
|
|
|
choices: ['always', 'on_create']
|
|
|
|
version_added: "2.3"
|
|
|
|
description:
|
|
|
|
- C(always) will attempt to update password. C(on_create) will only
|
|
|
|
set the password for newly created users.
|
2015-10-20 17:29:41 +00:00
|
|
|
email:
|
|
|
|
description:
|
|
|
|
- Email address for the user
|
2017-05-29 05:49:38 +00:00
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- Description about the user
|
|
|
|
version_added: "2.4"
|
2015-10-20 17:29:41 +00:00
|
|
|
default_project:
|
|
|
|
description:
|
|
|
|
- Project name or ID that the user should be associated with by default
|
|
|
|
domain:
|
|
|
|
description:
|
|
|
|
- Domain to create the user in if the cloud supports domains
|
|
|
|
enabled:
|
|
|
|
description:
|
|
|
|
- Is the user enabled
|
2018-03-15 21:15:24 +00:00
|
|
|
type: bool
|
|
|
|
default: 'yes'
|
2015-10-20 17:29:41 +00:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Should the resource be present or absent.
|
|
|
|
choices: [present, absent]
|
|
|
|
default: present
|
2017-02-17 20:49:03 +00:00
|
|
|
availability_zone:
|
|
|
|
description:
|
2017-06-12 06:55:19 +00:00
|
|
|
- Ignored. Present for backwards compatibility
|
2015-10-20 17:29:41 +00:00
|
|
|
requirements:
|
2018-05-29 12:51:58 +00:00
|
|
|
- "python >= 2.7"
|
2018-05-26 01:40:39 +00:00
|
|
|
- "openstacksdk"
|
2015-10-20 17:29:41 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Create a user
|
|
|
|
- os_user:
|
|
|
|
cloud: mycloud
|
|
|
|
state: present
|
|
|
|
name: demouser
|
|
|
|
password: secret
|
|
|
|
email: demo@example.com
|
|
|
|
domain: default
|
|
|
|
default_project: demo
|
|
|
|
|
|
|
|
# Delete a user
|
|
|
|
- os_user:
|
|
|
|
cloud: mycloud
|
|
|
|
state: absent
|
|
|
|
name: demouser
|
2016-11-04 16:38:17 +00:00
|
|
|
|
|
|
|
# Create a user but don't update password if user exists
|
|
|
|
- os_user:
|
|
|
|
cloud: mycloud
|
|
|
|
state: present
|
|
|
|
name: demouser
|
|
|
|
password: secret
|
|
|
|
update_password: on_create
|
|
|
|
email: demo@example.com
|
|
|
|
domain: default
|
|
|
|
default_project: demo
|
2015-10-20 17:29:41 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
|
2015-10-20 19:14:22 +00:00
|
|
|
RETURN = '''
|
|
|
|
user:
|
|
|
|
description: Dictionary describing the user.
|
|
|
|
returned: On success when I(state) is 'present'
|
2017-04-27 11:01:11 +00:00
|
|
|
type: complex
|
2015-10-20 19:14:22 +00:00
|
|
|
contains:
|
|
|
|
default_project_id:
|
|
|
|
description: User default project ID. Only present with Keystone >= v3.
|
|
|
|
type: string
|
|
|
|
sample: "4427115787be45f08f0ec22a03bfc735"
|
|
|
|
domain_id:
|
|
|
|
description: User domain ID. Only present with Keystone >= v3.
|
|
|
|
type: string
|
|
|
|
sample: "default"
|
|
|
|
email:
|
|
|
|
description: User email address
|
|
|
|
type: string
|
|
|
|
sample: "demo@example.com"
|
|
|
|
id:
|
|
|
|
description: User ID
|
|
|
|
type: string
|
|
|
|
sample: "f59382db809c43139982ca4189404650"
|
|
|
|
name:
|
|
|
|
description: User name
|
|
|
|
type: string
|
|
|
|
sample: "demouser"
|
|
|
|
'''
|
2017-10-09 16:56:26 +00:00
|
|
|
from distutils.version import StrictVersion
|
2015-10-20 19:14:22 +00:00
|
|
|
|
2017-05-29 05:49:38 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2018-02-15 14:20:49 +00:00
|
|
|
from ansible.module_utils.openstack import openstack_full_argument_spec, openstack_module_kwargs, openstack_cloud_from_module
|
2017-02-02 19:45:22 +00:00
|
|
|
|
|
|
|
|
2016-10-17 13:18:49 +00:00
|
|
|
def _needs_update(params_dict, user):
|
2017-05-29 05:49:38 +00:00
|
|
|
for k in params_dict:
|
|
|
|
if k not in ('password', 'update_password') and user[k] != params_dict[k]:
|
2015-10-20 17:29:41 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
# We don't get password back in the user object, so assume any supplied
|
|
|
|
# password is a change.
|
2016-11-04 16:38:17 +00:00
|
|
|
if (params_dict['password'] is not None and
|
|
|
|
params_dict['update_password'] == 'always'):
|
2015-10-20 17:29:41 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2017-05-29 05:49:38 +00:00
|
|
|
|
2016-10-17 13:18:49 +00:00
|
|
|
def _get_domain_id(cloud, domain):
|
|
|
|
try:
|
|
|
|
# We assume admin is passing domain id
|
|
|
|
domain_id = cloud.get_domain(domain)['id']
|
|
|
|
except:
|
|
|
|
# If we fail, maybe admin is passing a domain name.
|
|
|
|
# Note that domains have unique names, just like id.
|
|
|
|
try:
|
|
|
|
domain_id = cloud.search_domains(filters={'name': domain})[0]['id']
|
|
|
|
except:
|
|
|
|
# Ok, let's hope the user is non-admin and passing a sane id
|
|
|
|
domain_id = domain
|
|
|
|
|
|
|
|
return domain_id
|
|
|
|
|
2017-05-29 05:49:38 +00:00
|
|
|
|
2017-04-14 13:55:49 +00:00
|
|
|
def _get_default_project_id(cloud, default_project, module):
|
2016-10-17 13:18:49 +00:00
|
|
|
project = cloud.get_project(default_project)
|
|
|
|
if not project:
|
|
|
|
module.fail_json(msg='Default project %s is not valid' % default_project)
|
|
|
|
|
|
|
|
return project['id']
|
|
|
|
|
2015-10-20 17:29:41 +00:00
|
|
|
|
2017-05-29 05:49:38 +00:00
|
|
|
def main():
|
2015-10-20 17:29:41 +00:00
|
|
|
argument_spec = openstack_full_argument_spec(
|
|
|
|
name=dict(required=True),
|
2017-02-10 20:13:59 +00:00
|
|
|
password=dict(required=False, default=None, no_log=True),
|
2015-10-20 17:29:41 +00:00
|
|
|
email=dict(required=False, default=None),
|
|
|
|
default_project=dict(required=False, default=None),
|
2017-05-29 05:49:38 +00:00
|
|
|
description=dict(type='str'),
|
2015-10-20 17:29:41 +00:00
|
|
|
domain=dict(required=False, default=None),
|
|
|
|
enabled=dict(default=True, type='bool'),
|
|
|
|
state=dict(default='present', choices=['absent', 'present']),
|
2017-05-29 05:49:38 +00:00
|
|
|
update_password=dict(default='always', choices=['always', 'on_create']),
|
2015-10-20 17:29:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
module_kwargs = openstack_module_kwargs()
|
2015-10-20 19:14:22 +00:00
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec,
|
|
|
|
**module_kwargs)
|
2015-10-20 17:29:41 +00:00
|
|
|
|
|
|
|
name = module.params['name']
|
2018-02-15 14:20:49 +00:00
|
|
|
password = module.params.get('password')
|
2015-10-20 17:29:41 +00:00
|
|
|
email = module.params['email']
|
|
|
|
default_project = module.params['default_project']
|
|
|
|
domain = module.params['domain']
|
|
|
|
enabled = module.params['enabled']
|
|
|
|
state = module.params['state']
|
2016-11-04 16:38:17 +00:00
|
|
|
update_password = module.params['update_password']
|
2017-05-29 05:49:38 +00:00
|
|
|
description = module.params['description']
|
|
|
|
|
2018-05-26 01:40:39 +00:00
|
|
|
sdk, cloud = openstack_cloud_from_module(module)
|
2015-10-20 17:29:41 +00:00
|
|
|
try:
|
|
|
|
user = cloud.get_user(name)
|
|
|
|
|
2016-10-17 13:18:49 +00:00
|
|
|
domain_id = None
|
2016-03-22 12:13:35 +00:00
|
|
|
if domain:
|
2018-02-15 14:20:49 +00:00
|
|
|
domain_id = _get_domain_id(cloud, domain)
|
2016-03-22 12:13:35 +00:00
|
|
|
|
2015-10-20 17:29:41 +00:00
|
|
|
if state == 'present':
|
2016-11-16 13:45:16 +00:00
|
|
|
if update_password in ('always', 'on_create'):
|
|
|
|
if not password:
|
2017-05-29 05:49:38 +00:00
|
|
|
msg = "update_password is %s but a password value is missing" % update_password
|
2017-01-04 16:57:00 +00:00
|
|
|
module.fail_json(msg=msg)
|
2016-10-17 13:18:49 +00:00
|
|
|
default_project_id = None
|
2016-04-04 13:20:00 +00:00
|
|
|
if default_project:
|
2017-04-14 13:55:49 +00:00
|
|
|
default_project_id = _get_default_project_id(cloud, default_project, module)
|
2016-04-04 13:20:00 +00:00
|
|
|
|
2015-10-20 17:29:41 +00:00
|
|
|
if user is None:
|
2017-05-29 05:49:38 +00:00
|
|
|
if description is not None:
|
|
|
|
user = cloud.create_user(
|
|
|
|
name=name, password=password, email=email,
|
|
|
|
default_project=default_project_id, domain_id=domain_id,
|
|
|
|
enabled=enabled, description=description)
|
|
|
|
else:
|
|
|
|
user = cloud.create_user(
|
|
|
|
name=name, password=password, email=email,
|
|
|
|
default_project=default_project_id, domain_id=domain_id,
|
|
|
|
enabled=enabled)
|
2015-10-20 17:29:41 +00:00
|
|
|
changed = True
|
|
|
|
else:
|
2016-11-04 16:38:17 +00:00
|
|
|
params_dict = {'email': email, 'enabled': enabled,
|
|
|
|
'password': password,
|
|
|
|
'update_password': update_password}
|
2017-05-29 05:49:38 +00:00
|
|
|
if description is not None:
|
|
|
|
params_dict['description'] = description
|
2016-10-17 13:18:49 +00:00
|
|
|
if domain_id is not None:
|
|
|
|
params_dict['domain_id'] = domain_id
|
|
|
|
if default_project_id is not None:
|
|
|
|
params_dict['default_project_id'] = default_project_id
|
|
|
|
|
|
|
|
if _needs_update(params_dict, user):
|
2016-11-04 16:38:17 +00:00
|
|
|
if update_password == 'always':
|
2017-05-29 05:49:38 +00:00
|
|
|
if description is not None:
|
|
|
|
user = cloud.update_user(
|
|
|
|
user['id'], password=password, email=email,
|
|
|
|
default_project=default_project_id,
|
|
|
|
domain_id=domain_id, enabled=enabled, description=description)
|
|
|
|
else:
|
|
|
|
user = cloud.update_user(
|
|
|
|
user['id'], password=password, email=email,
|
|
|
|
default_project=default_project_id,
|
|
|
|
domain_id=domain_id, enabled=enabled)
|
2016-11-04 16:38:17 +00:00
|
|
|
else:
|
2017-05-29 05:49:38 +00:00
|
|
|
if description is not None:
|
|
|
|
user = cloud.update_user(
|
|
|
|
user['id'], email=email,
|
|
|
|
default_project=default_project_id,
|
|
|
|
domain_id=domain_id, enabled=enabled, description=description)
|
|
|
|
else:
|
|
|
|
user = cloud.update_user(
|
|
|
|
user['id'], email=email,
|
|
|
|
default_project=default_project_id,
|
|
|
|
domain_id=domain_id, enabled=enabled)
|
2015-10-20 17:29:41 +00:00
|
|
|
changed = True
|
|
|
|
else:
|
|
|
|
changed = False
|
|
|
|
module.exit_json(changed=changed, user=user)
|
|
|
|
|
|
|
|
elif state == 'absent':
|
|
|
|
if user is None:
|
2017-05-29 05:49:38 +00:00
|
|
|
changed = False
|
2015-10-20 17:29:41 +00:00
|
|
|
else:
|
|
|
|
cloud.delete_user(user['id'])
|
2017-05-29 05:49:38 +00:00
|
|
|
changed = True
|
2015-10-20 17:29:41 +00:00
|
|
|
module.exit_json(changed=changed)
|
|
|
|
|
2018-05-26 01:40:39 +00:00
|
|
|
except sdk.exceptions.OpenStackCloudException as e:
|
2016-01-13 16:00:16 +00:00
|
|
|
module.fail_json(msg=str(e), extra_data=e.extra_data)
|
2015-10-20 17:29:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|