Skip to content
Snippets Groups Projects
Commit d2c06774 authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov
Browse files

Merge branch 'fix/bgp_groups_auth' into 'develop'

BGP group template: add authentication option

See merge request !164
parents 7cff5b52 43c2c77d
Branches
Tags
1 merge request!164BGP group template: add authentication option
Pipeline #88759 passed
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
<group alu:operation="replace"> <group alu:operation="replace">
<group-name>{{ group.name }}</group-name> <group-name>{{ group.name }}</group-name>
<admin-state>{{ group.admin_state | default('enable') }}</admin-state> <admin-state>{{ group.admin_state | default('enable') }}</admin-state>
{% if group.auth_key is defined %}
<authentication-key>{{ group.auth_key }}</authentication-key>
{% endif %}
{% if group.nhs is defined %} {% if group.nhs is defined %}
<next-hop-self>{{ group.nhs }}</next-hop-self> <next-hop-self>{{ group.nhs }}</next-hop-self>
{% endif %} {% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment