├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── api-connection-scale.md ├── api-management-actions ├── powershell │ ├── clean-up.ps1 │ ├── full-deploy.ps1 │ ├── logic-app-deploy.ps1 │ └── shared-deploy.ps1 ├── readme.md ├── sample-function │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── AwesomeFunction.cs │ ├── SampleFunction.csproj │ ├── host.json │ └── local.settings.json └── templates │ ├── connectors-template.json │ ├── logic-app-definition-parameters.json │ ├── logic-app-definition.json │ ├── logic-app-template.json │ └── shared-template.json ├── concepts-review.md ├── file-definitions.md ├── function-app-actions ├── powershell │ ├── azure-pipelines.yml │ ├── clean-up.ps1 │ ├── full-deploy.ps1 │ ├── logic-app-deploy.ps1 │ └── shared-deploy.ps1 ├── readme.md ├── sample-function │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── AwesomeFunction.cs │ ├── SampleFunction.csproj │ ├── host.json │ └── local.settings.json └── templates │ ├── connectors-template.json │ ├── logic-app-definition-parameters.json │ ├── logic-app-definition.json │ ├── logic-app-template.json │ └── shared-template.json ├── images ├── create-pipeline.gif ├── developer-workflow.png ├── double-sb-connection-single-instance.png ├── double-sb-connection-three-instance-one-cosmos.png ├── double-sb-connection-three-instance-two-cosmos.png ├── double-sb-connection-two-instance-one-cosmos.png ├── double-sb-connection-two-instance.png ├── dup-dr.png ├── dup-environments.png ├── dup-none.png ├── dup-scale.png ├── function-app-sample.png ├── sample-integration-act.png ├── scaled-logic-app-resources.png ├── scaled-resource-group.png ├── script-flow.png ├── servicebus-sample.png ├── single-sb-connection-single-instance.png └── storage-sample.png ├── integration-account-connections ├── powershell │ ├── azure-pipelines.yml │ ├── clean-up.ps1 │ ├── full-deploy.ps1 │ ├── logic-app-deploy.ps1 │ └── shared-deploy.ps1 ├── readme.md └── templates │ ├── connectors-template.json │ ├── logic-app-definition-parameters.json │ ├── logic-app-definition.json │ ├── logic-app-template.json │ └── shared-template.json ├── naming-convention.md ├── readme.md ├── service-bus-connections ├── powershell │ ├── azure-pipelines.yml │ ├── clean-up.ps1 │ ├── full-deploy.ps1 │ ├── logic-app-deploy.ps1 │ └── shared-deploy.ps1 ├── readme.md └── templates │ ├── connectors-template.json │ ├── logic-app-definition-parameters.json │ ├── logic-app-definition.json │ ├── logic-app-template.json │ └── shared-template.json └── storage-account-connections ├── powershell ├── azure-pipelines.yml ├── clean-up.ps1 ├── full-deploy.ps1 ├── logic-app-deploy.ps1 └── shared-deploy.ps1 ├── readme.md └── templates ├── connectors-template.json ├── logic-app-definition-parameters.json ├── logic-app-definition.json ├── logic-app-template.json └── shared-template.json /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /api-connection-scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-connection-scale.md -------------------------------------------------------------------------------- /api-management-actions/powershell/clean-up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/powershell/clean-up.ps1 -------------------------------------------------------------------------------- /api-management-actions/powershell/full-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/powershell/full-deploy.ps1 -------------------------------------------------------------------------------- /api-management-actions/powershell/logic-app-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/powershell/logic-app-deploy.ps1 -------------------------------------------------------------------------------- /api-management-actions/powershell/shared-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/powershell/shared-deploy.ps1 -------------------------------------------------------------------------------- /api-management-actions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/readme.md -------------------------------------------------------------------------------- /api-management-actions/sample-function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/sample-function/.gitignore -------------------------------------------------------------------------------- /api-management-actions/sample-function/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/sample-function/.vscode/extensions.json -------------------------------------------------------------------------------- /api-management-actions/sample-function/AwesomeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/sample-function/AwesomeFunction.cs -------------------------------------------------------------------------------- /api-management-actions/sample-function/SampleFunction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/sample-function/SampleFunction.csproj -------------------------------------------------------------------------------- /api-management-actions/sample-function/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /api-management-actions/sample-function/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/sample-function/local.settings.json -------------------------------------------------------------------------------- /api-management-actions/templates/connectors-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/templates/connectors-template.json -------------------------------------------------------------------------------- /api-management-actions/templates/logic-app-definition-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/templates/logic-app-definition-parameters.json -------------------------------------------------------------------------------- /api-management-actions/templates/logic-app-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/templates/logic-app-definition.json -------------------------------------------------------------------------------- /api-management-actions/templates/logic-app-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/templates/logic-app-template.json -------------------------------------------------------------------------------- /api-management-actions/templates/shared-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/api-management-actions/templates/shared-template.json -------------------------------------------------------------------------------- /concepts-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/concepts-review.md -------------------------------------------------------------------------------- /file-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/file-definitions.md -------------------------------------------------------------------------------- /function-app-actions/powershell/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/powershell/azure-pipelines.yml -------------------------------------------------------------------------------- /function-app-actions/powershell/clean-up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/powershell/clean-up.ps1 -------------------------------------------------------------------------------- /function-app-actions/powershell/full-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/powershell/full-deploy.ps1 -------------------------------------------------------------------------------- /function-app-actions/powershell/logic-app-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/powershell/logic-app-deploy.ps1 -------------------------------------------------------------------------------- /function-app-actions/powershell/shared-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/powershell/shared-deploy.ps1 -------------------------------------------------------------------------------- /function-app-actions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/readme.md -------------------------------------------------------------------------------- /function-app-actions/sample-function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/sample-function/.gitignore -------------------------------------------------------------------------------- /function-app-actions/sample-function/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/sample-function/.vscode/extensions.json -------------------------------------------------------------------------------- /function-app-actions/sample-function/AwesomeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/sample-function/AwesomeFunction.cs -------------------------------------------------------------------------------- /function-app-actions/sample-function/SampleFunction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/sample-function/SampleFunction.csproj -------------------------------------------------------------------------------- /function-app-actions/sample-function/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /function-app-actions/sample-function/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/sample-function/local.settings.json -------------------------------------------------------------------------------- /function-app-actions/templates/connectors-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/templates/connectors-template.json -------------------------------------------------------------------------------- /function-app-actions/templates/logic-app-definition-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/templates/logic-app-definition-parameters.json -------------------------------------------------------------------------------- /function-app-actions/templates/logic-app-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/templates/logic-app-definition.json -------------------------------------------------------------------------------- /function-app-actions/templates/logic-app-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/templates/logic-app-template.json -------------------------------------------------------------------------------- /function-app-actions/templates/shared-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/function-app-actions/templates/shared-template.json -------------------------------------------------------------------------------- /images/create-pipeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/create-pipeline.gif -------------------------------------------------------------------------------- /images/developer-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/developer-workflow.png -------------------------------------------------------------------------------- /images/double-sb-connection-single-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/double-sb-connection-single-instance.png -------------------------------------------------------------------------------- /images/double-sb-connection-three-instance-one-cosmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/double-sb-connection-three-instance-one-cosmos.png -------------------------------------------------------------------------------- /images/double-sb-connection-three-instance-two-cosmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/double-sb-connection-three-instance-two-cosmos.png -------------------------------------------------------------------------------- /images/double-sb-connection-two-instance-one-cosmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/double-sb-connection-two-instance-one-cosmos.png -------------------------------------------------------------------------------- /images/double-sb-connection-two-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/double-sb-connection-two-instance.png -------------------------------------------------------------------------------- /images/dup-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/dup-dr.png -------------------------------------------------------------------------------- /images/dup-environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/dup-environments.png -------------------------------------------------------------------------------- /images/dup-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/dup-none.png -------------------------------------------------------------------------------- /images/dup-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/dup-scale.png -------------------------------------------------------------------------------- /images/function-app-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/function-app-sample.png -------------------------------------------------------------------------------- /images/sample-integration-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/sample-integration-act.png -------------------------------------------------------------------------------- /images/scaled-logic-app-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/scaled-logic-app-resources.png -------------------------------------------------------------------------------- /images/scaled-resource-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/scaled-resource-group.png -------------------------------------------------------------------------------- /images/script-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/script-flow.png -------------------------------------------------------------------------------- /images/servicebus-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/servicebus-sample.png -------------------------------------------------------------------------------- /images/single-sb-connection-single-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/single-sb-connection-single-instance.png -------------------------------------------------------------------------------- /images/storage-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/images/storage-sample.png -------------------------------------------------------------------------------- /integration-account-connections/powershell/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/powershell/azure-pipelines.yml -------------------------------------------------------------------------------- /integration-account-connections/powershell/clean-up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/powershell/clean-up.ps1 -------------------------------------------------------------------------------- /integration-account-connections/powershell/full-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/powershell/full-deploy.ps1 -------------------------------------------------------------------------------- /integration-account-connections/powershell/logic-app-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/powershell/logic-app-deploy.ps1 -------------------------------------------------------------------------------- /integration-account-connections/powershell/shared-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/powershell/shared-deploy.ps1 -------------------------------------------------------------------------------- /integration-account-connections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/readme.md -------------------------------------------------------------------------------- /integration-account-connections/templates/connectors-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/templates/connectors-template.json -------------------------------------------------------------------------------- /integration-account-connections/templates/logic-app-definition-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/templates/logic-app-definition-parameters.json -------------------------------------------------------------------------------- /integration-account-connections/templates/logic-app-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/templates/logic-app-definition.json -------------------------------------------------------------------------------- /integration-account-connections/templates/logic-app-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/templates/logic-app-template.json -------------------------------------------------------------------------------- /integration-account-connections/templates/shared-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/integration-account-connections/templates/shared-template.json -------------------------------------------------------------------------------- /naming-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/naming-convention.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/readme.md -------------------------------------------------------------------------------- /service-bus-connections/powershell/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/powershell/azure-pipelines.yml -------------------------------------------------------------------------------- /service-bus-connections/powershell/clean-up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/powershell/clean-up.ps1 -------------------------------------------------------------------------------- /service-bus-connections/powershell/full-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/powershell/full-deploy.ps1 -------------------------------------------------------------------------------- /service-bus-connections/powershell/logic-app-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/powershell/logic-app-deploy.ps1 -------------------------------------------------------------------------------- /service-bus-connections/powershell/shared-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/powershell/shared-deploy.ps1 -------------------------------------------------------------------------------- /service-bus-connections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/readme.md -------------------------------------------------------------------------------- /service-bus-connections/templates/connectors-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/templates/connectors-template.json -------------------------------------------------------------------------------- /service-bus-connections/templates/logic-app-definition-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/templates/logic-app-definition-parameters.json -------------------------------------------------------------------------------- /service-bus-connections/templates/logic-app-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/templates/logic-app-definition.json -------------------------------------------------------------------------------- /service-bus-connections/templates/logic-app-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/templates/logic-app-template.json -------------------------------------------------------------------------------- /service-bus-connections/templates/shared-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/service-bus-connections/templates/shared-template.json -------------------------------------------------------------------------------- /storage-account-connections/powershell/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/powershell/azure-pipelines.yml -------------------------------------------------------------------------------- /storage-account-connections/powershell/clean-up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/powershell/clean-up.ps1 -------------------------------------------------------------------------------- /storage-account-connections/powershell/full-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/powershell/full-deploy.ps1 -------------------------------------------------------------------------------- /storage-account-connections/powershell/logic-app-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/powershell/logic-app-deploy.ps1 -------------------------------------------------------------------------------- /storage-account-connections/powershell/shared-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/powershell/shared-deploy.ps1 -------------------------------------------------------------------------------- /storage-account-connections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/readme.md -------------------------------------------------------------------------------- /storage-account-connections/templates/connectors-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/templates/connectors-template.json -------------------------------------------------------------------------------- /storage-account-connections/templates/logic-app-definition-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/templates/logic-app-definition-parameters.json -------------------------------------------------------------------------------- /storage-account-connections/templates/logic-app-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/templates/logic-app-definition.json -------------------------------------------------------------------------------- /storage-account-connections/templates/logic-app-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/templates/logic-app-template.json -------------------------------------------------------------------------------- /storage-account-connections/templates/shared-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-logic-apps-deployment-samples/HEAD/storage-account-connections/templates/shared-template.json --------------------------------------------------------------------------------