1

Trying to deploy VM and web app using Azure Resource Group Deployment and Azure app service tasks in VSTS CI/CDP with Azure Stack.

The task is failing with following errors:

Error: unable to get local issuer certificate

Any suggestion on this issue?

Ajay Yadav
  • 1,625
  • 4
  • 19
  • 29

1 Answers1

0

To ignore SSL error set a Variable of name VSTS_ARM_REST_IGNORE_SSL_ERRORS with value: true in the release definition

Reference: Azure App Service Task Documentation

Ajay Yadav
  • 1,625
  • 4
  • 19
  • 29
  • You could Accept it as an Answer, This can be beneficial to other community members reading this thread. – Andy Li-MSFT Jun 29 '18 at 10:16
  • 2
    This is not a very good answer. Yes it fixes your immediate issue of no longer getting the error but does not address the underlying cause of the SSL error in the first place. For security reasons you should never just ignore SSL errors. – Joey Bob May 08 '19 at 07:48