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.
 
 
 

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