Azure, Artifactory and Xray templates. Major ARM template refactoring

This commit is contained in:
danielmkn
2020-08-24 10:53:17 -07:00
parent 38e43bc99b
commit 83178d67bd
65 changed files with 11394 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
{
"$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": "mssqlsrv",
"minLength": 1
},
"db_name": {
"type": "string",
"defaultValue": "artdb",
"minLength": 1
},
"db_location": {
"type": "string"
},
"db_edition": {
"type": "string",
"defaultValue": "Basic",
"allowedValues": [
"Basic",
"Standard",
"Premium"
]
},
"databases": {
"type": "object"
},
"manual_db_url": {
"type": "string"
}
},
"variables": {
},
"resources": [
],
"outputs": {
"db_user": {
"type": "string",
"value": "[parameters('db_user')]"
},
"db_server": {
"type": "string",
"value": "[parameters('db_server')]"
},
"db_name": {
"type": "string",
"value": "[parameters('db_name')]"
},
"db_location": {
"type": "string",
"value": "[parameters('db_location')]"
},
"db_edition": {
"type": "string",
"value": "[parameters('db_edition')]"
},
"databases": {
"type": "object",
"value": "[parameters('databases')]"
},
"dbUrl": {
"type": "string",
"value": "[parameters('manual_db_url')]"
}
}
}