mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-12-14 22:42:31 +00:00
8a6157e8b2
* chore: ignore venv directories * chore: ignore integration test generated inventory * feat: vendor hcloud package * import https://github.com/hetznercloud/hcloud-python * use vendored hcloud in modules * update integration test requirements * make vendor script self contained * chore: add check-hcloud-vendor pre-commit hook * pin hcloud version to v.1.24.0 * move vendored __version__.py file to _version.py * update comment about galaxy-importer filename lint
26 lines
823 B
Python
26 lines
823 B
Python
# Copyright: (c) 2019, Hetzner Cloud GmbH <info@hetzner-cloud.de>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
class ModuleDocFragment:
|
|
DOCUMENTATION = """
|
|
options:
|
|
api_token:
|
|
description:
|
|
- This is the API Token for the Hetzner Cloud.
|
|
- You can also set this option by using the environment variable HCLOUD_TOKEN
|
|
required: True
|
|
type: str
|
|
endpoint:
|
|
description:
|
|
- This is the API Endpoint for the Hetzner Cloud.
|
|
default: https://api.hetzner.cloud/v1
|
|
type: str
|
|
requirements:
|
|
- python-dateutil >= 2.7.5
|
|
- requests >=2.20
|
|
seealso:
|
|
- name: Documentation for Hetzner Cloud API
|
|
description: Complete reference for the Hetzner Cloud API.
|
|
link: https://docs.hetzner.cloud/
|
|
"""
|