mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 05:06:56 -06:00
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:
99
AzureResourceManager/Xray/vm_install/vm_parameters.json
Normal file
99
AzureResourceManager/Xray/vm_install/vm_parameters.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user