├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── PIPELINE_PAYLOAD.md ├── README.md ├── SECURITY.md ├── azuredeploy.json ├── resources ├── Diagrams.pptx ├── arm-edit-api.png ├── devops-edit-api.png ├── get-url-from-app.png ├── video-thumbprint.png ├── workflow.png └── workflow.vsdx └── samples ├── instance-two.json ├── just-the-base.json ├── second-instance.json └── the-whole-kit.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/LICENSE -------------------------------------------------------------------------------- /PIPELINE_PAYLOAD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/PIPELINE_PAYLOAD.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /resources/Diagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/Diagrams.pptx -------------------------------------------------------------------------------- /resources/arm-edit-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/arm-edit-api.png -------------------------------------------------------------------------------- /resources/devops-edit-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/devops-edit-api.png -------------------------------------------------------------------------------- /resources/get-url-from-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/get-url-from-app.png -------------------------------------------------------------------------------- /resources/video-thumbprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/video-thumbprint.png -------------------------------------------------------------------------------- /resources/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/workflow.png -------------------------------------------------------------------------------- /resources/workflow.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/resources/workflow.vsdx -------------------------------------------------------------------------------- /samples/instance-two.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/samples/instance-two.json -------------------------------------------------------------------------------- /samples/just-the-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/samples/just-the-base.json -------------------------------------------------------------------------------- /samples/second-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/samples/second-instance.json -------------------------------------------------------------------------------- /samples/the-whole-kit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-pipeline-orchestration/HEAD/samples/the-whole-kit.json --------------------------------------------------------------------------------