Created
May 30, 2017 04:34
-
-
Save goyalmohit/96bdf7e66fca66b6510848f328c464ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.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('firstArray'), parameters('secondArray'))]" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment