Как получить полное доменное имя виртуальной машины Azure при выводе шаблона ARM - PullRequest
0 голосов
/ 31 августа 2018

Ниже приведен мой шаблон для создания публичного IP-адреса. Теперь я хочу получить вывод fqdn для PublicIPAddress.

  "name": "[variables('publicIPAddressName')]",
  "type": "Microsoft.Network/publicIpAddresses",
  "apiVersion": "2018-06-01",
  "location": "eastus",
  "properties": {
      "publicIpAllocationMethod": "Static",
      "dnsSettings": {
      "domainNameLabel": "mycompany"
      }
   }

  "outputs": {
    "fqdn": {
      "type": "string",
  "value": "[if(equals(parameters('serverName'), 'app'), reference(resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))).dnsSettings.fqdn, json(null))]"
    }
  }

При развертывании вышеуказанного шаблона я вижу следующую ошибку

        "message": "{\r\n  \"error\": {\r\n    \"code\": \"InvalidTemplate\",\r\n    \"message\": \"Deployment template validation failed: 'The template output 'fqdn' at line '259' and column '13' is not valid: Unable to parse language expression 'if(equals(parameters('serverName'), 'paxata'), reference(variables('publicIPAddressName')).dnsSettings.fqdn, json(null))': expected token 'LeftParenthesis' and actual 'RightParenthesis'.. Please see https://aka.ms/arm-template-expressions for usage details.'.\"\r\n  }\r\n}"

1 Ответ

0 голосов
/ 31 августа 2018

Я могу решить эту проблему, обновив условие else в разделе fqdn output, и оно работает хорошо.

"fqdn": {
  "type": "string",
  "value": "[if(equals(parameters('server'), 'app'), reference(resourceId('Microsoft.Network/publicIPAddresses', 'publicip3')).dnsSettings.fqdn, 'FQDN not available')]"
}
...