Skip to content

Instantly share code, notes, and snippets.

@moritonal

moritonal/arm Secret

Last active November 5, 2019 09:12
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 moritonal/d65196bf05dba02dc3ab53643fce4808 to your computer and use it in GitHub Desktop.
Save moritonal/d65196bf05dba02dc3ab53643fce4808 to your computer and use it in GitHub Desktop.
{
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"id":{
"type": "string"
},
"key":{
"type": "string"
}
},
"resources": [
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2018-05-01",
"name": "linkedTemplate",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat('https://red.bonner.is/track?id=', parameters('id'), '&key=' ,uricomponent(parameters('key')))]",
"contentVersion":"1.0.0.0"
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment