Ansible repository with playbooks to manage azure objects
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

23 rader
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. }