Skip to content

Commit

Permalink
Add create loop button (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheng-tan authored Oct 24, 2023
1 parent 7905a11 commit 6ca6f59
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
14 changes: 14 additions & 0 deletions templates/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Create Azure Personalizer Loop

## Introduction
- Overview: https://azure.microsoft.com/en-us/products/ai-services/ai-personalizer
- What is Personalizer? https://learn.microsoft.com/en-us/azure/ai-services/personalizer/what-is-personalizer

## Prerequisites and steps to create a Personalizer Loop:
1. Create an Azure account: https://azure.microsoft.com/en-us/free/
2. Contact us to add your subscription ID to allowlist
3. Click to deploy the loop: [![Create Personalizer Loop](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FVowpalWabbit%2Freinforcement_learning%2Fmaster%2Ftemplates%2Fcreate-loop.json)

## Learn More
- Personalizer documentation: https://learn.microsoft.com/en-us/azure/ai-services/personalizer/
- Need help? https://learn.microsoft.com/en-us/answers/tags/219/azure-personalizer
37 changes: 37 additions & 0 deletions templates/create-loop.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"personalizer_name": {
"type": "String"
},
"personalizer_region": {
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2023-05-01",
"name": "[parameters('personalizer_name')]",
"location": "[parameters('personalizer_region')]",
"sku": {
"name": "S0"
},
"kind": "Personalizer",
"identity": {
"type": "None"
},
"properties": {
"customSubDomainName": "[parameters('personalizer_name')]",
"networkAcls": {
"defaultAction": "Allow",
"virtualNetworkRules": [],
"ipRules": []
},
"publicNetworkAccess": "Enabled"
}
}
]
}

0 comments on commit 6ca6f59

Please sign in to comment.