ARM templates - parameterized versions in JCR and Xray

- added callhome for VM and Template installations
- added RT, JCR and Xray templates for VM image creation
This commit is contained in:
danielmkn
2020-10-16 15:13:19 -07:00
parent 66c07c4d2a
commit 3b97737dfc
13 changed files with 1139 additions and 5 deletions

View File

@@ -0,0 +1,99 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"value": "westus2"
},
"networkInterfaceName": {
"value": "xray-nic"
},
"networkSecurityGroupName": {
"value": "xray-nsg"
},
"networkSecurityGroupRules": {
"value": [
{
"name": "SSH",
"properties": {
"priority": 300,
"protocol": "TCP",
"access": "Allow",
"direction": "Inbound",
"sourceAddressPrefix": "*",
"sourcePortRange": "*",
"destinationAddressPrefix": "*",
"destinationPortRange": "22"
}
}
]
},
"subnetName": {
"value": "default"
},
"virtualNetworkName": {
"value": "xray-vm-test-vnet"
},
"addressPrefixes": {
"value": [
"10.0.0.0/24"
]
},
"subnets": {
"value": [
{
"name": "default",
"properties": {
"addressPrefix": "10.0.0.0/24"
}
}
]
},
"publicIpAddressName": {
"value": "xray-public-ip"
},
"publicIpAddressType": {
"value": "Dynamic"
},
"publicIpAddressSku": {
"value": "Basic"
},
"virtualMachineName": {
"value": "xray-vm"
},
"virtualMachineComputerName": {
"value": "xrayvm"
},
"storageAccountName": {
"value": "mpstoragevhd"
},
"virtualMachineSize": {
"value": "Standard_B4ms"
},
"diagnosticsStorageAccountName": {
"value": "xrayvmvmtestdiag"
},
"diagnosticsStorageAccountId": {
"value": "Microsoft.Storage/storageAccounts/xrayvmvmtestdiag"
},
"diagnosticsStorageAccountType": {
"value": "Standard_LRS"
},
"diagnosticsStorageAccountKind": {
"value": "Storage"
},
"adminUsername": {
"value": "vmuser"
},
"adminPassword": {
"value": "OWERWRITE_THE_PASSWORD"
},
"artifactoryVersion": {
"value": "3.8.5"
},
"scriptName": {
"value": "install_xray_to_vm.sh"
}
}
}