summaryrefslogtreecommitdiffstats
path: root/roles/wireguard/meta
diff options
context:
space:
mode:
Diffstat (limited to 'roles/wireguard/meta')
-rw-r--r--roles/wireguard/meta/argument_specs.yml18
-rw-r--r--roles/wireguard/meta/main.yml19
2 files changed, 37 insertions, 0 deletions
diff --git a/roles/wireguard/meta/argument_specs.yml b/roles/wireguard/meta/argument_specs.yml
new file mode 100644
index 00000000..68e0e821
--- /dev/null
+++ b/roles/wireguard/meta/argument_specs.yml
@@ -0,0 +1,18 @@
+---
+argument_specs:
+ main:
+ short_description: "Install and configure WireGuard VPN connections"
+ description:
+ - "Installs WireGuard package and tools"
+ - "Deploys WireGuard configuration files from dictionary"
+ - "Optionally auto-starts a specific connection on boot"
+ author: "a14m"
+ options:
+ wireguard_connections:
+ description: "Dictionary of WireGuard connection configurations"
+ type: "dict"
+ default: {}
+ wireguard_autostart_connection:
+ description: "Name of connection to automatically start on boot"
+ type: "str"
+ default: ""
diff --git a/roles/wireguard/meta/main.yml b/roles/wireguard/meta/main.yml
new file mode 100644
index 00000000..22da6ddd
--- /dev/null
+++ b/roles/wireguard/meta/main.yml
@@ -0,0 +1,19 @@
+---
+dependencies: []
+
+galaxy_info:
+ author: "a14m"
+ description: "Install and configure WireGuard VPN connections"
+ company: "kartoffeln.work GmbH."
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
+ - name: "Ubuntu"
+ versions:
+ - "noble"
+ - name: "Debian"
+ versions:
+ - "bookworm"