Ansible repository with playbooks to manage azure objects
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

17 líneas
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. }