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,31 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"db_user": {
"value": "GEN-UNIQUE"
},
"db_password": {
"value": "GEN-UNIQUE"
},
"db_server": {
"value": "postgressrvr"
},
"databases": {
"value": {
"properties": [
{
"name": "artdb",
"charset": "UTF8",
"collation": "English_United States.1252"
},
{
"name": "xray",
"charset": "UTF8",
"collation": "English_United States.1252"
}
]
}
}
}
}