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

docs(volume_attachment): Change automount default value from null to False

This commit is contained in:
shaerpour 2025-07-12 17:53:58 +03:30
parent 37d0c41924
commit 7396d70879
No known key found for this signature in database
GPG key ID: D89285D72B39ED8F
2 changed files with 4 additions and 1 deletions

View file

@ -0,0 +1,2 @@
trivial:
volume_attachment: Change `automount` default value from `null` to `False`

View file

@ -34,6 +34,7 @@ options:
description:
- Automatically mount the Volume in the Server.
type: bool
default: False
state:
description:
- State of the Volume.
@ -175,7 +176,7 @@ class AnsibleHCloudVolumeAttachment(AnsibleHCloud):
argument_spec=dict(
volume={"type": "str", "required": True},
server={"type": "str"},
automount={"type": "bool"},
automount={"type": "bool", "default": False},
state={
"choices": ["present", "absent"],
"default": "present",