mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 17:06:58 -06:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"db_user": {
|
|
"type": "string",
|
|
"defaultValue": "artifactory",
|
|
"minLength": 1
|
|
},
|
|
"db_password": {
|
|
"type": "securestring"
|
|
},
|
|
"db_server": {
|
|
"type": "string",
|
|
"defaultValue": "xraypostgressrv",
|
|
"minLength": 1
|
|
},
|
|
"db_location": {
|
|
"type": "string"
|
|
},
|
|
"databases": {
|
|
"type": "object"
|
|
},
|
|
"manual_db_url": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"variables": {
|
|
},
|
|
"resources": [
|
|
],
|
|
"outputs": {
|
|
"jdbcConnString": {
|
|
"type": "string",
|
|
"value": "[parameters('manual_db_url')]"
|
|
},
|
|
"db_user": {
|
|
"type": "string",
|
|
"value": "[parameters('db_user')]"
|
|
},
|
|
"db_server": {
|
|
"type": "string",
|
|
"value": "[parameters('db_server')]"
|
|
},
|
|
"db_location": {
|
|
"type": "string",
|
|
"value": "[parameters('db_location')]"
|
|
},
|
|
"databases": {
|
|
"type": "object",
|
|
"value": "[parameters('databases')]"
|
|
}
|
|
}
|
|
} |