Skip to content

Instantly share code, notes, and snippets.

@PlagueHO
Last active August 6, 2017 02:23
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 PlagueHO/6b8fb93b7f2eb16582060d42946edf37 to your computer and use it in GitHub Desktop.
Save PlagueHO/6b8fb93b7f2eb16582060d42946edf37 to your computer and use it in GitHub Desktop.
ARM Template Parameters to Install an Azure Container Instance with a Linux Container that requires persistent storage (for example GoCD-Server)
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"containername": {
"value": ""
},
"containerimage": {
"value": ""
},
"cpu": {
"value": 1
},
"memoryingb": {
"value": "1.5"
},
"containerport": {
"value": ""
},
"sharename": {
"value": ""
},
"storageaccountname": {
"value": ""
},
"storageaccountkey": {
"reference": {
"keyVault": {
"id": ""
},
"secretName": ""
}
},
"volumename": {
"value": ""
},
"mountpoint": {
"value": ""
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment