Ansible repository with playbooks to manage azure objects
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

23 строки
475 B

  1. {
  2. "properties": {
  3. {% if bp.lbbpaddresses is defined %}
  4. "loadBalancerBackendAddresses": [
  5. {% for ip in bp.lbbpaddresses %}
  6. {
  7. "name": "address{{ loop.index }}",
  8. "properties": {
  9. "ipAddress": "{{ ip.ip }}",
  10. "virtualNetwork": {
  11. "id": "{{ ip.vnet }}"
  12. }
  13. }
  14. },
  15. {% endfor %}
  16. ],
  17. {% endif %}
  18. {%if bp.tunnelinterfaces is defined %}
  19. "tunnelInterfaces": "{{ bp.tunnelinterfaces }}"
  20. {%endif%}
  21. }
  22. }