summaryrefslogtreecommitdiffstats
path: root/roles/mount/meta/argument_specs.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/mount/meta/argument_specs.yml')
-rw-r--r--roles/mount/meta/argument_specs.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/mount/meta/argument_specs.yml b/roles/mount/meta/argument_specs.yml
new file mode 100644
index 00000000..e74c1610
--- /dev/null
+++ b/roles/mount/meta/argument_specs.yml
@@ -0,0 +1,20 @@
+---
+argument_specs:
+ main:
+ options:
+ mount_device:
+ type: "str"
+ description: "Device to mount (e.g. PARTLABEL=backup)"
+ required: true
+ mount_point:
+ type: "str"
+ description: "Mount point for the drive"
+ default: "/mnt/backup"
+ mount_fstype:
+ type: "str"
+ description: "Filesystem type of the device"
+ default: "ext4"
+ mount_options:
+ type: "str"
+ description: "Mount options for the device"
+ default: "defaults,noatime"