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:
parent
933a16249b
commit
328dfb8b0f
95 changed files with 577 additions and 577 deletions
|
|
@ -33,7 +33,7 @@ extends_documentation_fragment:
|
|||
|
||||
EXAMPLES = """
|
||||
- name: Gather hcloud datacenter info
|
||||
hetzner.hcloud.hcloud_datacenter_info:
|
||||
hetzner.hcloud.datacenter_info:
|
||||
register: output
|
||||
|
||||
- name: Print the gathered info
|
||||
|
|
@ -43,12 +43,12 @@ EXAMPLES = """
|
|||
- name: List available server_types in a datacenter
|
||||
block:
|
||||
- name: Gather a hcloud datacenter
|
||||
hetzner.hcloud.hcloud_datacenter_info:
|
||||
hetzner.hcloud.datacenter_info:
|
||||
name: fsn1-dc14
|
||||
register: output
|
||||
|
||||
- name: Gather a hcloud datacenter available server_types
|
||||
hetzner.hcloud.hcloud_server_type_info:
|
||||
hetzner.hcloud.server_type_info:
|
||||
id: "{{ item }}"
|
||||
loop: "{{ output.hcloud_datacenter_info[0].server_types.available }}"
|
||||
register: available_server_types
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue