aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/nextcloud/meta
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/nextcloud/meta')
-rw-r--r--ansible/roles/nextcloud/meta/argument_specs.yaml25
-rw-r--r--ansible/roles/nextcloud/meta/main.yaml5
2 files changed, 30 insertions, 0 deletions
diff --git a/ansible/roles/nextcloud/meta/argument_specs.yaml b/ansible/roles/nextcloud/meta/argument_specs.yaml
new file mode 100644
index 0000000..60a7f85
--- /dev/null
+++ b/ansible/roles/nextcloud/meta/argument_specs.yaml
@@ -0,0 +1,25 @@
+---
+
+argument_specs:
+ main:
+ short_description: Main entry point for the Nextcloud AIO role
+ description:
+ - This role installs the Nextcloud All-in-One flavour as a Docker Compose project.
+ author:
+ - Kumar Damani
+ options:
+ nextcloud_nas_mount_path:
+ type: 'str'
+ required: true
+ description:
+ - The path to the data on the NFS share.
+ nextcloud_php_max_mem_mb:
+ type: 'int'
+ required: true
+ description:
+ - The max mem in MB to give PHP.
+ nextcloud_php_max_upload_size_gb:
+ type: 'int'
+ required: true
+ description:
+ - The max size in GB to allow for file uploads.
diff --git a/ansible/roles/nextcloud/meta/main.yaml b/ansible/roles/nextcloud/meta/main.yaml
new file mode 100644
index 0000000..bd4979e
--- /dev/null
+++ b/ansible/roles/nextcloud/meta/main.yaml
@@ -0,0 +1,5 @@
+---
+
+dependencies:
+ - role: 'base'
+ - role: 'docker'