2020-03-09 10:11:07 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2019, Nurfet Becirevic <nurfet.becirevic@gmail.com>
|
|
|
|
# Copyright (c) 2019, Tomas Karasek <tom.to.the.k@gmail.com>
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: packet_project
|
|
|
|
|
2022-11-09 13:57:41 +01:00
|
|
|
short_description: Create/delete a project in Packet host
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
description:
|
|
|
|
- Create/delete a project in Packet host.
|
|
|
|
- API is documented at U(https://www.packet.com/developers/api/#projects).
|
|
|
|
|
2020-06-13 15:01:19 +02:00
|
|
|
version_added: '0.2.0'
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
author:
|
|
|
|
- Tomas Karasek (@t0mk) <tom.to.the.k@gmail.com>
|
|
|
|
- Nurfet Becirevic (@nurfet-becirevic) <nurfet.becirevic@gmail.com>
|
|
|
|
|
Add attributes to atomic, memset, one, oneview, packet, proxmox, and xenserver modules (#5958)
Add attributes to atomic, memset, one, oneview, packet, proxmox, and xenserver modules.
2023-02-20 17:27:38 +01:00
|
|
|
extends_documentation_fragment:
|
|
|
|
- community.general.attributes
|
|
|
|
|
|
|
|
attributes:
|
|
|
|
check_mode:
|
|
|
|
support: full
|
|
|
|
diff_mode:
|
|
|
|
support: none
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
options:
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Indicate desired state of the target.
|
|
|
|
default: present
|
|
|
|
choices: ['present', 'absent']
|
|
|
|
type: str
|
|
|
|
|
|
|
|
payment_method:
|
|
|
|
description:
|
|
|
|
- Payment method is name of one of the payment methods available to your user.
|
|
|
|
- When blank, the API assumes the default payment method.
|
|
|
|
type: str
|
|
|
|
|
|
|
|
auth_token:
|
|
|
|
description:
|
2023-06-20 08:14:02 +02:00
|
|
|
- Packet api token. You can also supply it in environment variable E(PACKET_API_TOKEN).
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Name for/of the project.
|
|
|
|
type: str
|
|
|
|
|
|
|
|
org_id:
|
|
|
|
description:
|
|
|
|
- UUID of the organization to create a project for.
|
|
|
|
- When blank, the API assumes the default organization.
|
|
|
|
type: str
|
|
|
|
|
|
|
|
id:
|
|
|
|
description:
|
|
|
|
- UUID of the project which you want to remove.
|
|
|
|
type: str
|
|
|
|
|
|
|
|
custom_data:
|
|
|
|
description:
|
|
|
|
- Custom data about the project to create.
|
|
|
|
type: str
|
|
|
|
|
|
|
|
requirements:
|
|
|
|
- "packet-python >= 1.40"
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# All the examples assume that you have your Packet API token in env var PACKET_API_TOKEN.
|
|
|
|
# You can also pass the api token in module param auth_token.
|
|
|
|
|
2020-05-16 15:07:51 +02:00
|
|
|
- name: Create new project
|
2020-03-09 10:11:07 +01:00
|
|
|
hosts: localhost
|
|
|
|
tasks:
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.packet_project:
|
2020-03-09 10:11:07 +01:00
|
|
|
name: "new project"
|
|
|
|
|
2020-05-16 15:07:51 +02:00
|
|
|
- name: Create new project within non-default organization
|
2020-03-09 10:11:07 +01:00
|
|
|
hosts: localhost
|
|
|
|
tasks:
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.packet_project:
|
2020-03-09 10:11:07 +01:00
|
|
|
name: "my org project"
|
|
|
|
org_id: a4cc87f9-e00f-48c2-9460-74aa60beb6b0
|
|
|
|
|
2020-05-16 15:07:51 +02:00
|
|
|
- name: Remove project by id
|
2020-03-09 10:11:07 +01:00
|
|
|
hosts: localhost
|
|
|
|
tasks:
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.packet_project:
|
2020-03-09 10:11:07 +01:00
|
|
|
state: absent
|
|
|
|
id: eef49903-7a09-4ca1-af67-4087c29ab5b6
|
|
|
|
|
2020-05-16 15:07:51 +02:00
|
|
|
- name: Create new project with non-default billing method
|
2020-03-09 10:11:07 +01:00
|
|
|
hosts: localhost
|
|
|
|
tasks:
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.packet_project:
|
2020-03-09 10:11:07 +01:00
|
|
|
name: "newer project"
|
|
|
|
payment_method: "the other visa"
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
changed:
|
|
|
|
description: True if a project was created or removed.
|
|
|
|
type: bool
|
2022-09-06 20:42:17 +02:00
|
|
|
sample: true
|
2020-03-09 10:11:07 +01:00
|
|
|
returned: success
|
|
|
|
|
|
|
|
name:
|
|
|
|
description: Name of addressed project.
|
|
|
|
type: str
|
|
|
|
returned: success
|
|
|
|
|
|
|
|
id:
|
|
|
|
description: UUID of addressed project.
|
|
|
|
type: str
|
|
|
|
returned: success
|
|
|
|
'''
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule, env_fallback
|
2021-06-26 23:59:11 +02:00
|
|
|
from ansible.module_utils.common.text.converters import to_native
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
HAS_PACKET_SDK = True
|
|
|
|
|
|
|
|
try:
|
|
|
|
import packet
|
|
|
|
except ImportError:
|
|
|
|
HAS_PACKET_SDK = False
|
|
|
|
|
|
|
|
PACKET_API_TOKEN_ENV_VAR = "PACKET_API_TOKEN"
|
|
|
|
|
|
|
|
|
|
|
|
def act_on_project(target_state, module, packet_conn):
|
|
|
|
result_dict = {'changed': False}
|
|
|
|
given_id = module.params.get('id')
|
|
|
|
given_name = module.params.get('name')
|
|
|
|
if given_id:
|
|
|
|
matching_projects = [
|
|
|
|
p for p in packet_conn.list_projects() if given_id == p.id]
|
|
|
|
else:
|
|
|
|
matching_projects = [
|
|
|
|
p for p in packet_conn.list_projects() if given_name == p.name]
|
|
|
|
|
|
|
|
if target_state == 'present':
|
|
|
|
if len(matching_projects) == 0:
|
|
|
|
org_id = module.params.get('org_id')
|
|
|
|
custom_data = module.params.get('custom_data')
|
|
|
|
payment_method = module.params.get('payment_method')
|
|
|
|
|
|
|
|
if not org_id:
|
|
|
|
params = {
|
|
|
|
"name": given_name,
|
|
|
|
"payment_method_id": payment_method,
|
|
|
|
"customdata": custom_data
|
|
|
|
}
|
|
|
|
new_project_data = packet_conn.call_api("projects", "POST", params)
|
|
|
|
new_project = packet.Project(new_project_data, packet_conn)
|
|
|
|
else:
|
|
|
|
new_project = packet_conn.create_organization_project(
|
|
|
|
org_id=org_id,
|
|
|
|
name=given_name,
|
|
|
|
payment_method_id=payment_method,
|
|
|
|
customdata=custom_data
|
|
|
|
)
|
|
|
|
|
|
|
|
result_dict['changed'] = True
|
|
|
|
matching_projects.append(new_project)
|
|
|
|
|
|
|
|
result_dict['name'] = matching_projects[0].name
|
|
|
|
result_dict['id'] = matching_projects[0].id
|
|
|
|
else:
|
|
|
|
if len(matching_projects) > 1:
|
|
|
|
_msg = ("More than projects matched for module call with state = absent: "
|
|
|
|
"{0}".format(to_native(matching_projects)))
|
|
|
|
module.fail_json(msg=_msg)
|
|
|
|
|
|
|
|
if len(matching_projects) == 1:
|
|
|
|
p = matching_projects[0]
|
|
|
|
result_dict['name'] = p.name
|
|
|
|
result_dict['id'] = p.id
|
|
|
|
result_dict['changed'] = True
|
|
|
|
try:
|
|
|
|
p.delete()
|
|
|
|
except Exception as e:
|
|
|
|
_msg = ("while trying to remove project {0}, id {1}, got error: {2}".format(
|
|
|
|
p.name, p.id, to_native(e)))
|
|
|
|
module.fail_json(msg=_msg)
|
|
|
|
return result_dict
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
|
|
|
state=dict(choices=['present', 'absent'], default='present'),
|
|
|
|
auth_token=dict(
|
|
|
|
type='str',
|
|
|
|
fallback=(env_fallback, [PACKET_API_TOKEN_ENV_VAR]),
|
|
|
|
no_log=True
|
|
|
|
),
|
|
|
|
name=dict(type='str'),
|
|
|
|
id=dict(type='str'),
|
|
|
|
org_id=dict(type='str'),
|
|
|
|
payment_method=dict(type='str'),
|
|
|
|
custom_data=dict(type='str'),
|
|
|
|
),
|
|
|
|
supports_check_mode=True,
|
|
|
|
required_one_of=[("name", "id",)],
|
|
|
|
mutually_exclusive=[
|
|
|
|
('name', 'id'),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
if not HAS_PACKET_SDK:
|
|
|
|
module.fail_json(msg='packet required for this module')
|
|
|
|
|
|
|
|
if not module.params.get('auth_token'):
|
|
|
|
_fail_msg = ("if Packet API token is not in environment variable {0}, "
|
|
|
|
"the auth_token parameter is required".format(PACKET_API_TOKEN_ENV_VAR))
|
|
|
|
module.fail_json(msg=_fail_msg)
|
|
|
|
|
|
|
|
auth_token = module.params.get('auth_token')
|
|
|
|
|
|
|
|
packet_conn = packet.Manager(auth_token=auth_token)
|
|
|
|
|
|
|
|
state = module.params.get('state')
|
|
|
|
|
|
|
|
if state in ['present', 'absent']:
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=False)
|
|
|
|
|
|
|
|
try:
|
|
|
|
module.exit_json(**act_on_project(state, module, packet_conn))
|
|
|
|
except Exception as e:
|
|
|
|
module.fail_json(
|
|
|
|
msg="failed to set project state {0}: {1}".format(state, to_native(e)))
|
|
|
|
else:
|
|
|
|
module.fail_json(msg="{0} is not a valid state for this module".format(state))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|