fix: added openform to vagrant playbooks and host_vars

This commit is contained in:
Tobias Wüst 2026-05-18 22:31:06 +02:00
parent f479a19595
commit 1ddd5d9eb9
3 changed files with 12 additions and 0 deletions

View file

@ -3,6 +3,8 @@ opnform_domain: "forms.local.test"
opnform_secret_dir: "{{ playbook_dir }}/secrets/{{ inventory_hostname }}"
opnform_secret_file: "opnform_secret_encryption_key"
opnform_secret_length: 64
opnform_admin_email: "admin@digitalboard.ch"
opnform_admin_password: "ChangeMe123!"
opnform_secret_encryption_key: >-
{{ lookup('ansible.builtin.password',

View file

@ -28,6 +28,10 @@ traefik_dmz_exposed_services:
domain: home.local.test
port: 443
protocol: https
- name: opnform
domain: forms.local.test
port: 443
protocol: https
# Example: Add more services as you deploy them
# - name: forgejo
# domain: git.example.com

View file

@ -82,3 +82,9 @@
become: yes
roles:
- digitalboard.core.homarr
- name: Deploy opnform service
hosts: opnform_servers
become: yes
roles:
- digitalboard.core.opnform