mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 15:06:57 -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:
102
AzureResourceManager/Artifactory/vm_install/vm_parameters.json
Normal file
102
AzureResourceManager/Artifactory/vm_install/vm_parameters.json
Normal file
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
|
||||
"contentVersion": "1.0.0.0",
|
||||
"parameters": {
|
||||
"location": {
|
||||
"value": "westus2"
|
||||
},
|
||||
"networkInterfaceName": {
|
||||
"value": "rt-nic"
|
||||
},
|
||||
"networkSecurityGroupName": {
|
||||
"value": "rt-nsg"
|
||||
},
|
||||
"networkSecurityGroupRules": {
|
||||
"value": [
|
||||
{
|
||||
"name": "SSH",
|
||||
"properties": {
|
||||
"priority": 300,
|
||||
"protocol": "TCP",
|
||||
"access": "Allow",
|
||||
"direction": "Inbound",
|
||||
"sourceAddressPrefix": "*",
|
||||
"sourcePortRange": "*",
|
||||
"destinationAddressPrefix": "*",
|
||||
"destinationPortRange": "22"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"subnetName": {
|
||||
"value": "default"
|
||||
},
|
||||
"virtualNetworkName": {
|
||||
"value": "artifactory-vm-test-vnet"
|
||||
},
|
||||
"addressPrefixes": {
|
||||
"value": [
|
||||
"10.0.0.0/24"
|
||||
]
|
||||
},
|
||||
"subnets": {
|
||||
"value": [
|
||||
{
|
||||
"name": "default",
|
||||
"properties": {
|
||||
"addressPrefix": "10.0.0.0/24"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"publicIpAddressName": {
|
||||
"value": "rt-public-ip"
|
||||
},
|
||||
"publicIpAddressType": {
|
||||
"value": "Dynamic"
|
||||
},
|
||||
"publicIpAddressSku": {
|
||||
"value": "Basic"
|
||||
},
|
||||
"virtualMachineName": {
|
||||
"value": "artifactory-vm"
|
||||
},
|
||||
"virtualMachineComputerName": {
|
||||
"value": "rtvm"
|
||||
},
|
||||
"diskNameSalt": {
|
||||
"value": "20200824153005"
|
||||
},
|
||||
"storageAccountName": {
|
||||
"value": "mpstoragevhd"
|
||||
},
|
||||
"virtualMachineSize": {
|
||||
"value": "Standard_B4ms"
|
||||
},
|
||||
|
||||
"diagnosticsStorageAccountName": {
|
||||
"value": "artifactoryvmtestdiag"
|
||||
},
|
||||
"diagnosticsStorageAccountId": {
|
||||
"value": "Microsoft.Storage/storageAccounts/artifactoryvmtestdiag"
|
||||
},
|
||||
"diagnosticsStorageAccountType": {
|
||||
"value": "Standard_LRS"
|
||||
},
|
||||
"diagnosticsStorageAccountKind": {
|
||||
"value": "Storage"
|
||||
},
|
||||
"adminUsername": {
|
||||
"value": "vmuser"
|
||||
},
|
||||
"adminPassword": {
|
||||
"value": "OWERWRITE_THE_PASSWORD"
|
||||
},
|
||||
"artifactoryVersion": {
|
||||
"value": "7.10.2"
|
||||
},
|
||||
"scriptName": {
|
||||
"value": "install_pro7_to_vm.sh"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user