Skip to content

Instantly share code, notes, and snippets.

@jamyc
Created March 10, 2020 15:14
Show Gist options
  • Save jamyc/55c5f34b351b0a3d5b818b6682be8b9e to your computer and use it in GitHub Desktop.
Save jamyc/55c5f34b351b0a3d5b818b6682be8b9e to your computer and use it in GitHub Desktop.
Template
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"testArray": {
"type": "array",
"metadata": {
"description": "Array of tests."
}
}
},
"variables": {
"MyName": "SimpleName"
},
"resources": [
],
"outputs": {
"hostname": {
"type": "string",
"value": "[reference(parameters('testArray'))]"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment