Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created May 30, 2017 04:46
Show Gist options
  • Save goyalmohit/d2956c963ff39b92cf190763d960aa2e to your computer and use it in GitHub Desktop.
Save goyalmohit/d2956c963ff39b92cf190763d960aa2e to your computer and use it in GitHub Desktop.
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.1.0",
"parameters": {
"firstArray": {
"type": "array",
"defaultValue": [
"1-1",
"1-2",
"1-3"
]
},
"secondArray": {
"type": "array",
"defaultValue": [
"2-1",
"2-2",
"2-3"
]
}
},
"resources": [
],
"outputs": {
"return": {
"type": "array",
"value": "[concat(parameters(\u0027firstArray\u0027), parameters(\u0027secondArray\u0027))]"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment