Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created February 20, 2022 16:13
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 johnlokerse/2bc07ce3928e86fae69adf06b253d763 to your computer and use it in GitHub Desktop.
Save johnlokerse/2bc07ce3928e86fae69adf06b253d763 to your computer and use it in GitHub Desktop.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"myEnvironment": {
"type": "string",
"allowedValues": [
"D",
"T",
"A",
"P"
]
}
},
"variables": {
"myName": "John",
"setting": {
"D": {
"environmentName": "MyDevEnvironment",
"sku": "basic"
},
"T": {
"environmentName": "MyTestEnvironment",
"sku": "basic"
},
"A": {
"environmentName": "MyAccEnvironment",
"sku": "premium"
},
"P": {
"environmentName": "MyPrdEnvironment",
"sku": "premium"
},
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment