diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-10 19:08:56 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-10 19:08:56 +0200 |
| commit | 7c51e0642ec18a88adb8d4b56c54d6de0e0d12cf (patch) | |
| tree | 1430308b6d8b10aa38c9a1c90d86d3882616f5c8 /roles/wg_portal | |
| parent | b0e3077544a341bc8ec2308652a98cf928c58064 (diff) | |
Add recommended argument_specs
Diffstat (limited to 'roles/wg_portal')
| -rw-r--r-- | roles/wg_portal/meta/argument_specs.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/wg_portal/meta/argument_specs.yml b/roles/wg_portal/meta/argument_specs.yml new file mode 100644 index 00000000..a6fef116 --- /dev/null +++ b/roles/wg_portal/meta/argument_specs.yml @@ -0,0 +1,18 @@ +--- +argument_specs: + main: + short_description: "Install and configure wg-portal VPN web interface manager" + description: "Install and configure wg-portal VPN web interface manager" + options: + wg_portal_version: + description: "Version of wg-portal to install" + type: "str" + default: "latest" + wg_portal_port: + description: "Port for wg-portal web interface" + type: "str" + default: "8080" + wg_portal_password: + description: "Password hash for wg-portal authentication" + type: "str" + default: "{{ ('changeme' | hash('sha256') | hash('sha256'))[:64] }}"
\ No newline at end of file |
