Ansible repository with playbooks to manage azure objects
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

17 satır
403 B

  1. {
  2. "location": "{{ lngw.location }}",
  3. "properties": {
  4. "localNetworkAddressSpace": {
  5. "addressPrefixes": {{ lngw.prefixes }}
  6. },
  7. "gatewayIpAddress": "{{ lngw.gwip }}",
  8. {% if lngw.asn is defined and lngw.asn != '' %}
  9. "bgpSettings": {
  10. "asn": {{ lngw.asn }},
  11. "bgpPeeringAddress": "{{ lngw.bgppeer }}",
  12. "peerWeight": {{ lngw.weight }}
  13. }
  14. {% endif %}
  15. }
  16. }