Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active September 8, 2017 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/a055c720f80b1c7eed2ae3d5e6e8d989 to your computer and use it in GitHub Desktop.
Save justinyoo/a055c720f80b1c7eed2ae3d5e6e8d989 to your computer and use it in GitHub Desktop.
Mixing Parameters in Logic Apps with ARM Template
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
// Parameters for ARM template
"parameters": {
...
},
"variables": {
...
},
"resources": [
// Resource for Logic App
{
"apiVersion": "2016-06-01",
"type": "Microsoft.Logic/workflows",
"properties": {
// Parameters under the "properties" of Logic App resource
"parameters": {
"$connections": {
"value": {
...
}
}
},
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
// Prameters under the "definition" of Logic App
"parameters": {
"$connections": {
"defaultValue": {},
"type": "Object"
}
},
"triggers": {
...
},
"actions": {
...
},
"outputs": {}
}
}
}
],
"outputs": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment