Files
computer-playbook/roles/web-svc-coturn/schema/main.yml
Kevin Veen-Birkenbach 4d223f1784 feat(web-svc-coturn): add configurable network_mode (default host) and adjust credential generation
- Introduced `COTURN_NETWORK_MODE` to support both host and bridge modes
- Updated docker-compose template to skip port publishing in host mode
- Changed user_password credential algorithm to random_hex for stronger randomness
- Set default network_mode: host in config

Ref: https://chatgpt.com/share/68d72a50-c36c-800f-9367-32c4ae520000
2025-09-27 02:05:48 +02:00

9 lines
284 B
YAML

credentials:
user_password:
description: "Long-Term Credential password for clients"
algorithm: "random_hex"
validation: "^[A-Za-z0-9]{32}$"
auth_secret:
description: "TURN-REST static auth secret"
algorithm: "sha1"
validation: "^[a-f0-9]{40}$"