You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hetzner-ansible/roles/gitea_realm/defaults/main.yml

33 lines
633 B
YAML

---
current_realm_clients: [
{
name: '{{ gitea_client_id }}',
clientId: "{{ gitea_client_id }}",
admin_url: '',
root_url: '',
redirect_uris: '
[
"{{ http_s }}://{{ gitea_base_url }}/*",
]',
secret: '{{ gitea_client_secret }}',
web_origins: '
[
"{{ http_s }}://{{ gitea_base_url }}",
]',
}
]
current_realm_users: [
{
"username": "{{ gitea_admin_username }}",
"password": "{{ gitea_admin_password }}",
}
]
current_realm_admin_users: [
{
"username": "{{ gitea_realm_admin_username }}",
"password": "{{ gitea_realm_admin_password }}",
}
]