mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2025-01-07 01:38:49 +00:00
dfff49e31f
* chore: add pre-commit config * chore: fix pre-commit errors * chore: add black pre-commit hook * style: format python files with black * chore: add isort pre-commit hook * style: format python files using isort * chore: add pyupgrade pre-commit hook * refactor: upgrade code to python3.7 * Allow stacking PRs Co-authored-by: Julian Tölle <julian.toelle97@gmail.com> --------- Co-authored-by: Julian Tölle <julian.toelle97@gmail.com>
25 lines
802 B
Python
25 lines
802 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:
|
|
- hcloud-python >= 1.20.0
|
|
seealso:
|
|
- name: Documentation for Hetzner Cloud API
|
|
description: Complete reference for the Hetzner Cloud API.
|
|
link: https://docs.hetzner.cloud/
|
|
"""
|