2020-03-09 13:36:01 +00:00
|
|
|
# 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)
|
|
|
|
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
class ModuleDocFragment:
|
|
|
|
DOCUMENTATION = """
|
2020-03-09 13:36:01 +00:00
|
|
|
options:
|
|
|
|
api_token:
|
|
|
|
description:
|
|
|
|
- This is the API Token for the Hetzner Cloud.
|
2022-11-08 07:41:17 +00:00
|
|
|
- You can also set this option by using the environment variable HCLOUD_TOKEN
|
2020-03-09 13:36:01 +00:00
|
|
|
required: True
|
|
|
|
type: str
|
|
|
|
endpoint:
|
|
|
|
description:
|
|
|
|
- This is the API Endpoint for the Hetzner Cloud.
|
|
|
|
default: https://api.hetzner.cloud/v1
|
|
|
|
type: str
|
|
|
|
requirements:
|
2023-05-15 07:40:19 +00:00
|
|
|
- hcloud-python >= 1.20.0
|
2020-03-09 13:36:01 +00:00
|
|
|
seealso:
|
|
|
|
- name: Documentation for Hetzner Cloud API
|
|
|
|
description: Complete reference for the Hetzner Cloud API.
|
|
|
|
link: https://docs.hetzner.cloud/
|
2023-06-27 09:50:13 +00:00
|
|
|
"""
|