Created
March 3, 2022 00:19
-
-
Save sunnyy02/c591d6b8c9545413f576a0fa60eec4b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"appId": { | |
"value": "[CLIENT_ID_FROM_MANAGED_IDENTITY]" | |
}, | |
"appType": { | |
"value": "UserAssignedMSI" | |
}, | |
"tenantId": { | |
"value": "[TENANT_ID]" | |
}, | |
"existingUserAssignedMSIName": { | |
"value": "identity-appointment-bot" | |
}, | |
"existingUserAssignedMSIResourceGroupName": { | |
"value": "rg-bot" | |
}, | |
"botId": { | |
"value": "bs-bot-[UNIQUE_SUFFIX]" | |
}, | |
"newWebAppName": { | |
"value": "appointment-bot-[UNIQUE_SUFFIX]" | |
}, | |
"existingAppServicePlan": { | |
"value": "asp-bot" | |
}, | |
"appServicePlanLocation": { | |
"value": "[AZURE_LOCATION]" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment