Skip to content

Commit

Permalink
adding string examples
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmax committed May 29, 2015
1 parent eb5e887 commit 298b5c9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions toLowerSample.json
@@ -0,0 +1,13 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [],
"outputs": {
"exampleOutput": {
"value": "[toLower('StringToLower')]",
"type" : "string"
}
}
}
13 changes: 13 additions & 0 deletions toUpperSample.json
@@ -0,0 +1,13 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [],
"outputs": {
"exampleOutput": {
"value": "[toUpper('StringToUpper')]",
"type" : "string"
}
}
}

0 comments on commit 298b5c9

Please sign in to comment.