hetzner.hcloud.storage_box_subaccount module – Create and manage Storage Box Subaccounts in Hetzner.
Note
This module is part of the hetzner.hcloud collection (version 6.4.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install hetzner.hcloud.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: hetzner.hcloud.storage_box_subaccount.
Synopsis
Create, update and delete Storage Box Subaccounts in Hetzner.
See the Storage Box Subaccounts API documentation for more details.
Experimental: Storage Box support is experimental, breaking changes may occur within minor releases. See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
Aliases: hcloud_storage_box_subaccount
Requirements
The below requirements are needed on the host that executes this module.
python-dateutil >= 2.7.5
requests >=2.20
Parameters
Parameter |
Comments |
|---|---|
Access settings of the Storage Box Subaccount. |
|
Whether access from outside the Hetzner network is allowed. Choices:
|
|
Whether the Subaccount is read-only. Choices:
|
|
Whether the Samba subsystem is enabled. Choices:
|
|
Whether the SSH subsystem is enabled. Choices:
|
|
Whether the WebDAV subsystem is enabled. Choices:
|
|
The endpoint for the Hetzner Cloud API. You can also set this option by using the Default: |
|
The endpoint for the Hetzner API. You can also set this option by using the Default: |
|
The token for the Hetzner Cloud API. You can also set this option by using the |
|
Description of the Storage Box Subaccount. |
|
Home directory of the Storage Box Subaccount. Required if the Storage Box Subaccount does not exist. |
|
ID of the Storage Box Subaccount to manage. Required if no Storage Box Subaccount If the ID is invalid, the module will fail. |
|
User-defined labels (key-value pairs) for the Storage Box Subaccount. |
|
Name of the Storage Box Subaccount to manage. Required if no Storage Box Subaccount Required if the Storage Box Subaccount does not exist. Because the API resource does not have this property, the name is stored in the Storage Box Subaccount labels. This ensures that the module is idempotent, and removes the need to use different module arguments for create and update. |
|
Password for the Storage Box Subaccount. Required if the Storage Box Subaccount does not exist or when |
|
State of the Storage Box Subaccount.
Choices:
|
|
ID or Name of the parent Storage Box. Using the ID is preferred, to reduce the amount of API requests. |
See Also
See also
- Documentation for Hetzner APIs
Complete reference for the Hetzner APIs.
Examples
- name: Create a Storage Box Subaccount
hetzner.hcloud.storage_box_subaccount:
storage_box: my-storage-box
name: subaccount1
home_directory: backups/subaccount1
password: secret
access_settings:
reachable_externally: false
ssh_enabled: true
samba_enabled: false
webdav_enabled: false
readonly: false
labels:
env: prod
state: present
- name: Reset a Storage Box Subaccount password
hetzner.hcloud.storage_box_subaccount:
storage_box: my-storage-box
name: subaccount1
password: secret
state: reset_password
- name: Delete a Storage Box Subaccount by name
hetzner.hcloud.storage_box_subaccount:
storage_box: my-storage-box
name: subaccount1
state: absent
- name: Delete a Storage Box Subaccount by id
hetzner.hcloud.storage_box_subaccount:
storage_box: 497436
id: 158045
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Details about the Storage Box Subaccount. Returned: always |
|
Access settings of the Storage Box Subaccount. Returned: always |
|
Whether access from outside the Hetzner network is allowed. Returned: always Sample: |
|
Whether the Subaccount is read-only. Returned: always Sample: |
|
Whether the Samba subsystem is enabled. Returned: always Sample: |
|
Whether the SSH subsystem is enabled. Returned: always Sample: |
|
Whether the WebDAV subsystem is enabled. Returned: always Sample: |
|
Point in time when the Storage Box Subaccount was created (in RFC3339 format). Returned: always Sample: |
|
Description of the Storage Box Subaccount. Returned: always Sample: |
|
Home directory of the Storage Box Subaccount. Returned: always Sample: |
|
ID of the Storage Box Subaccount. Returned: always Sample: |
|
User-defined labels (key-value pairs) of the Storage Box Subaccount. Returned: always Sample: |
|
Name of the Storage Box Subaccount. Returned: always Sample: |
|
FQDN of the Storage Box Subaccount. Returned: always Sample: |
|
ID of the parent Storage Box. Returned: always Sample: |
|
Username of the Storage Box Subaccount. Returned: always Sample: |