Fix sku values in ARM template (#6309)
This commit is contained in:
Родитель
9ea8e1367e
Коммит
d3ee49b2f8
|
@ -6,7 +6,14 @@
|
|||
"defaultValue": "nightly-build-linux",
|
||||
"type": "String"
|
||||
},
|
||||
"appId": {
|
||||
"botSku": {
|
||||
"defaultValue": "F0",
|
||||
"type": "string",
|
||||
"metadata": {
|
||||
"description": "The pricing tier of the Bot Service Registration. Acceptable values are F0 and S1."
|
||||
}
|
||||
},
|
||||
"appId": {
|
||||
"type": "string",
|
||||
"metadata": {
|
||||
"description": "Active Directory App ID, set as MicrosoftAppId in the Web App's Application Settings."
|
||||
|
@ -30,10 +37,10 @@
|
|||
"name": "[parameters('botName')]",
|
||||
"location": "West US",
|
||||
"sku": {
|
||||
"name": "B1",
|
||||
"tier": "Basic",
|
||||
"size": "B1",
|
||||
"family": "B",
|
||||
"name": "S1",
|
||||
"tier": "Standard",
|
||||
"size": "S1",
|
||||
"family": "S",
|
||||
"capacity": 1
|
||||
},
|
||||
"kind": "linux",
|
||||
|
@ -192,7 +199,7 @@
|
|||
"location": "global",
|
||||
"kind": "bot",
|
||||
"sku": {
|
||||
"name": "[parameters('botName')]"
|
||||
"name": "[parameters('botSku')]"
|
||||
},
|
||||
"properties": {
|
||||
"name": "[parameters('botName')]",
|
||||
|
|
Загрузка…
Ссылка в новой задаче