1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00
hetzner.hcloud/plugins/modules
Jonas L. 7ac361a9cc
feat: add txt_record filter to format TXT records (#721)
##### SUMMARY

The format of TXT records must consist of one or many quoted strings of
255 characters.

Use this function to format TXT record that must match the format
required by the API:

```yml
- name: Create a SPF record
  hetzner.hcloud.zone_rrset:
    zone: example.com
    name: "@"
    type: "TXT"
    records:
      - value: "{{ 'v=spf1 include:_spf.example.net ~all' | hetzner.hcloud.text_record }}"
    state: present
```

##### ISSUE TYPE

- Feature Pull Request


##### COMPONENT NAME

zone_rrset
2025-10-31 12:36:19 +01:00
..
__init__.py Initial commit 2020-03-09 13:36:01 +00:00
certificate.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
certificate_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
datacenter_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
firewall.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
firewall_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
firewall_resource.py docs: fix firewall_resource examples input parameters (#557) 2024-09-12 13:42:11 +02:00
floating_ip.py fix: wait for floating ip assign action (#694) 2025-09-26 11:50:14 +02:00
floating_ip_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
image_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
iso_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
load_balancer.py docs: update deprecated server types (#718) 2025-10-28 13:45:41 +01:00
load_balancer_info.py docs: update deprecated server types (#718) 2025-10-28 13:45:41 +01:00
load_balancer_network.py fix: improve actions waiting timeout based on data (#488) 2024-04-15 11:01:12 +02:00
load_balancer_service.py fix: only update load balancer service when changed (#603) 2025-02-24 14:26:58 +01:00
load_balancer_target.py fix: improve actions waiting timeout based on data (#488) 2024-04-15 11:01:12 +02:00
load_balancer_type_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
location_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
network.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
network_info.py docs: update deprecated server types (#718) 2025-10-28 13:45:41 +01:00
placement_group.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
primary_ip.py docs: add link to rdns module for resource with dns pointers (#664) 2025-06-27 10:23:01 +02:00
primary_ip_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
rdns.py fix: improve actions waiting timeout based on data (#488) 2024-04-15 11:01:12 +02:00
route.py fix: improve actions waiting timeout based on data (#488) 2024-04-15 11:01:12 +02:00
server.py docs: update deprecated server types (#718) 2025-10-28 13:45:41 +01:00
server_info.py docs: update deprecated server types (#718) 2025-10-28 13:45:41 +01:00
server_network.py fix: improve actions waiting timeout based on data (#488) 2024-04-15 11:01:12 +02:00
server_type_info.py feat: per location server types (#692) 2025-09-26 11:50:05 +02:00
ssh_key.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
ssh_key_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
subnetwork.py fix: improve actions waiting timeout based on data (#488) 2024-04-15 11:01:12 +02:00
volume.py feat: allow renaming a volume (#683) 2025-08-14 15:02:28 +02:00
volume_attachment.py feat: add volume_attachment module (#622) 2025-04-28 12:49:21 +02:00
volume_info.py fix: ensure returned resource ids are integers (#651) 2025-06-11 10:09:12 +02:00
zone.py feat: support the new DNS API (#703) 2025-10-07 11:04:00 +02:00
zone_info.py feat: support the new DNS API (#703) 2025-10-07 11:04:00 +02:00
zone_rrset.py feat: add txt_record filter to format TXT records (#721) 2025-10-31 12:36:19 +01:00
zone_rrset_info.py feat: support the new DNS API (#703) 2025-10-07 11:04:00 +02:00