ansible-roles/roles/radius_server/templates/clients.conf.j2

8 lines
186 B
Plaintext
Raw Normal View History

2021-12-01 19:13:34 +01:00
{% for client in rad_clients %}
client {{ client.name }} {
ipaddr = {{ client.ip }}
secret = {{ client.secret }}
nas_type = {{ client.nas_type | default('other') }}
}
{% endfor %}