Ansible repository with playbooks to manage azure objects
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

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