Created
March 10, 2020 15:14
-
-
Save jamyc/55c5f34b351b0a3d5b818b6682be8b9e to your computer and use it in GitHub Desktop.
Template
This file contains 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": { | |
"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