1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

feat: DNS support is now generally available (#727)

##### SUMMARY

DNS support is now general available.

See https://docs.hetzner.cloud/changelog#2025-11-10-dns-ga for more
details.

##### ISSUE TYPE

- Feature Pull Request
This commit is contained in:
Jonas L. 2025-11-10 11:52:37 +01:00 committed by GitHub
parent 450b61edb8
commit 337067d9de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 2 additions and 35 deletions

View file

@ -15,8 +15,6 @@ short_description: Gather infos about your Hetzner Cloud Zones.
description:
- Gather infos about your Hetzner Cloud Zones.
- See the L(Zones API documentation,https://docs.hetzner.cloud/reference/cloud#zones) for more details.
- B(Experimental:) DNS API is in beta, breaking changes may occur within minor releases.
See https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta for more details.
author:
- Jonas Lammler (@jooola)
@ -158,7 +156,6 @@ hcloud_zone_info:
from ansible.module_utils.basic import AnsibleModule
from ..module_utils.experimental import dns_experimental_warning
from ..module_utils.hcloud import AnsibleHCloud
from ..module_utils.vendor.hcloud import APIException, HCloudException
from ..module_utils.vendor.hcloud.zones import BoundZone, ZonePrimaryNameserver
@ -169,10 +166,6 @@ class AnsibleHCloudZoneInfo(AnsibleHCloud):
hcloud_zone_info: list[BoundZone] | None = None
def __init__(self, module: AnsibleModule):
dns_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):
tmp = []