mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
##### SUMMARY We collect all changes for the Storage Box support in this PR. It will only be merged when everything is implemented through smaller pull requests targeting the `storage-boxes` branch. --------- Co-authored-by: Julian Tölle <julian.toelle@hetzner-cloud.de>
15 lines
446 B
YAML
15 lines
446 B
YAML
---
|
|
- name: Create test_storage_box
|
|
hetzner.hcloud.storage_box:
|
|
name: "{{ hcloud_storage_box_name }}"
|
|
type: "{{ hcloud_storage_box_type_name }}"
|
|
location: "{{ hcloud_location_name }}"
|
|
password: "{{ hcloud_storage_box_password }}"
|
|
ssh_keys:
|
|
- "{{ test_ssh_keypair.public_key }}"
|
|
access_settings:
|
|
ssh_enabled: true
|
|
zfs_enabled: false
|
|
labels:
|
|
key: "{{ hcloud_ns }}"
|
|
register: test_storage_box
|