dotnet-podcasts/Test/ARMTemplate/template.json

28 lines
709 B
JSON
Raw Permalink Normal View History

2022-09-10 02:30:36 +08:00
{
"$schema": "http://schema.management.azure.com/schemas/2019-08-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"type": "String"
},
"location": {
"type": "String"
},
"tags": {
"type": "Object"
}
},
"resources": [
{
"type": "Microsoft.LoadTestService/loadtests",
"apiVersion": "2021-12-01-preview",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
2023-01-16 17:43:13 +08:00
"tags": "[parameters('tags')]",
2023-01-16 17:36:09 +08:00
"identity": {
2023-01-16 17:43:13 +08:00
"type": "SystemAssigned"
2023-01-16 17:36:09 +08:00
}
2022-09-10 02:30:36 +08:00
}
]
}