Skip to content

Instantly share code, notes, and snippets.

@jeevan-vj
Created July 29, 2019 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeevan-vj/cad9ecd770e7ff884a0c5b240dc0e068 to your computer and use it in GitHub Desktop.
Save jeevan-vj/cad9ecd770e7ff884a0c5b240dc0e068 to your computer and use it in GitHub Desktop.
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"functions": [
{
"namespace": "rt",
"members": {
"containerNameWithLocation": {
"parameters": [
{
"name": "containerName",
"type": "string"
}
],
"output": {
"type": "string",
"value": "[concat(parameters('containerName'), resourceGroup().location)]"
}
}
}
}
],
"parameters":{
"containerName": {
"type": "string",
"defaultValue": "blobcontainer"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment