我想爲在Github上有源代碼的web應用程序部署ARM模板。到目前爲止,相當一些試驗和錯誤之後,我可以使用以下格式:Azure ARM模板部署Github集成(帶部署密鑰)
"apiVersion": "2015-08-01", "name": "web", "type": "sourcecontrols", "dependsOn": [ "[resourceId('Microsoft.Web/Sites', parameters('siteName'))]" ], "properties": { "RepoUrl": "https://github.com/user/repo.git", "branch": "dev", "IsManualIntegration": true } }
這是手動積分。這似乎工作,如果我以前使用Github和授權的Azure。有沒有辦法自動設置和同步Github回購?有沒有辦法使用部署密鑰?