I followed this article to auto deploy my GitLab master branch to Azure. Under the "Deployment" section in the Azure portal, I selected "Deployment options" -> "Choose Source", which presents these 3 options.
- Local Git Repository
- GitHub
- Bitbucket
There is no "External Repository" option as the article suggests, so dead end there. I thought perhaps I could accomplish this via the Azure CLI instead. I fumbled by way through the help screens and arrived at this command:
az webapp deployment source config --slot stage -u [MY_GITLAB_PROJECT_URL] --branch master --resource-group [MY_GROUP] --name [MY_PROJET_NAME]
The command errors with: "The parameter [MY_GITLAB_PROJECT_URL] has an invalid value". I tried the SSH url, the HTTPS url (with the .git suffix) and the URL to the repo. No dice.
Any suggestions? Im on the free trial plan, if that makes a difference.