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

refactor: start using new modules names (#393)

##### SUMMARY

Update all references to modules to use the new module names.
Continuation of #390
This commit is contained in:
Jonas L 2023-11-21 09:40:11 +01:00 committed by GitHub
parent 933a16249b
commit 328dfb8b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
95 changed files with 577 additions and 577 deletions

View file

@ -49,13 +49,13 @@ extends_documentation_fragment:
EXAMPLES = """
- name: Create a basic placement group
hetzner.hcloud.hcloud_placement_group:
hetzner.hcloud.placement_group:
name: my-placement-group
state: present
type: spread
- name: Create a placement group with labels
hetzner.hcloud.hcloud_placement_group:
hetzner.hcloud.placement_group:
name: my-placement-group
type: spread
labels:
@ -64,7 +64,7 @@ EXAMPLES = """
state: present
- name: Ensure the placement group is absent (remove if needed)
hetzner.hcloud.hcloud_placement_group:
hetzner.hcloud.placement_group:
name: my-placement-group
state: absent
"""