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:
parent
37d0c41924
commit
7396d70879
2 changed files with 4 additions and 1 deletions
2
changelogs/fragments/volume-attachment-automount.yml
Normal file
2
changelogs/fragments/volume-attachment-automount.yml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
trivial:
|
||||
volume_attachment: Change `automount` default value from `null` to `False`
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue