1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-02-04 07:51:50 +00:00
community.general/plugins/modules/ovh_monthly_billing.py
Felix Fontein 236b9c0e04
Sort imports with ruff check --fix (#11400)
Sort imports with ruff check --fix.
2026-01-09 07:40:58 +01:00

159 lines
4.7 KiB
Python

#!/usr/bin/python
# Copyright (c) 2019, Francois Lallart (@fraff)
# 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
from __future__ import annotations
DOCUMENTATION = r"""
module: ovh_monthly_billing
author: Francois Lallart (@fraff)
version_added: '0.2.0'
short_description: Manage OVH monthly billing
description:
- Enable monthly billing on OVH cloud instances (be aware OVH does not allow to disable it).
requirements: ["ovh"]
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
project_id:
required: true
type: str
description:
- ID of the project, get it with U(https://api.ovh.com/console/#/cloud/project#GET).
instance_id:
required: true
type: str
description:
- ID of the instance, get it with U(https://api.ovh.com/console/#/cloud/project/%7BserviceName%7D/instance#GET).
endpoint:
type: str
description:
- The endpoint to use (for instance V(ovh-eu)).
application_key:
type: str
description:
- The applicationKey to use.
application_secret:
type: str
description:
- The application secret to use.
consumer_key:
type: str
description:
- The consumer key to use.
"""
EXAMPLES = r"""
- name: Basic usage, using auth from /etc/ovh.conf
community.general.ovh_monthly_billing:
project_id: 0c727a20aa144485b70c44dee9123b46
instance_id: 8fa89ad2-8f08-4220-9fa4-9695ea23e948
# Get openstack cloud ID and instance ID, OVH use them in its API
- name: Get openstack cloud ID and instance ID
os_server_info:
cloud: myProjectName
region_name: myRegionName
server: myServerName
register: openstack_servers
- name: Use IDs
community.general.ovh_monthly_billing:
project_id: "{{ openstack_servers.0.tenant_id }}"
instance_id: "{{ openstack_servers.0.id }}"
application_key: yourkey
application_secret: yoursecret
consumer_key: yourconsumerkey
"""
RETURN = r"""
"""
import traceback
try:
import ovh
import ovh.exceptions
from ovh.exceptions import APIError
HAS_OVH = True
except ImportError:
HAS_OVH = False
OVH_IMPORT_ERROR = traceback.format_exc()
from ansible.module_utils.basic import AnsibleModule
def main():
module = AnsibleModule(
argument_spec=dict(
project_id=dict(required=True),
instance_id=dict(required=True),
endpoint=dict(),
application_key=dict(no_log=True),
application_secret=dict(no_log=True),
consumer_key=dict(no_log=True),
),
supports_check_mode=True,
)
# Get parameters
project_id = module.params.get("project_id")
instance_id = module.params.get("instance_id")
endpoint = module.params.get("endpoint")
application_key = module.params.get("application_key")
application_secret = module.params.get("application_secret")
consumer_key = module.params.get("consumer_key")
instance = ""
ovh_billing_status = ""
if not HAS_OVH:
module.fail_json(msg="python-ovh is required to run this module, see https://github.com/ovh/python-ovh")
# Connect to OVH API
client = ovh.Client(
endpoint=endpoint,
application_key=application_key,
application_secret=application_secret,
consumer_key=consumer_key,
)
# Check that the instance exists
try:
client.get(f"/cloud/project/{project_id}")
except ovh.exceptions.ResourceNotFoundError:
module.fail_json(msg=f"project {project_id} does not exist")
# Check that the instance exists
try:
instance = client.get(f"/cloud/project/{project_id}/instance/{instance_id}")
except ovh.exceptions.ResourceNotFoundError:
module.fail_json(msg=f"instance {instance_id} does not exist in project {project_id}")
# Is monthlyBilling already enabled or pending ?
if instance["monthlyBilling"] is not None:
if instance["monthlyBilling"]["status"] in ["ok", "activationPending"]:
module.exit_json(changed=False, ovh_billing_status=instance["monthlyBilling"])
if module.check_mode:
module.exit_json(changed=True, msg="Dry Run!")
try:
ovh_billing_status = client.post(f"/cloud/project/{project_id}/instance/{instance_id}/activeMonthlyBilling")
module.exit_json(changed=True, ovh_billing_status=ovh_billing_status["monthlyBilling"])
except APIError as apiError:
module.fail_json(changed=False, msg=f"Failed to call OVH API: {apiError}")
# We should never reach here
module.fail_json(msg="Internal ovh_monthly_billing module error")
if __name__ == "__main__":
main()