forked from microsoft/azure_arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuredeploy.parameters.json
39 lines (39 loc) · 1006 Bytes
/
azuredeploy.parameters.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"sshRSAPublicKey": {
"value": "<your RSA public key>"
},
"spnClientId": {
"value": "<your service principal client id>"
},
"spnClientSecret": {
"value": "<your service principal secret>"
},
"spnTenantId": {
"value": "<your spn tenant id>"
},
"windowsAdminUsername": {
"value": "arcdemo"
},
"windowsAdminPassword": {
"value": "ArcPassword123!!"
},
"myIpAddress": {
"value": "<your IP address>"
},
"logAnalyticsWorkspaceName": {
"value": "<your unique Log Analytics workspace name>"
},
"templateBaseUrl": {
"value": "https://raw.githubusercontent.com/microsoft/azure_arc/main/azure_arc_ml_jumpstart/aks/arm_template/"
},
"kubernetesVersion": {
"value": "1.28.5"
},
"dnsPrefix": {
"value": "arcml"
}
}
}