Browse Source

Fix spacing in JSON file

pull/76/head
Clemens Wolff 5 years ago
parent
commit
11cf8e2d39
1 changed files with 9 additions and 9 deletions
  1. 18
      azuredeploy.json

18
azuredeploy.json

@ -2,35 +2,35 @@
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0", "contentVersion": "1.0.0.0",
"parameters": { "parameters": {
"appName":{
"appName": {
"type": "string", "type": "string",
"minLength": 1,
"minLength": 1,
"metadata": { "metadata": {
"description": "The name for the webapp. Must be globally unique." "description": "The name for the webapp. Must be globally unique."
} }
}, },
"secretKey":{
"secretKey": {
"type": "securestring", "type": "securestring",
"minLength": 16,
"minLength": 16,
"metadata": { "metadata": {
"description": "The value to use as the Django secret key." "description": "The value to use as the Django secret key."
} }
}, },
"adminUserName":{
"adminUserName": {
"type": "string", "type": "string",
"minLength": 1,
"minLength": 1,
"metadata": { "metadata": {
"description": "The user name for the admin account." "description": "The user name for the admin account."
} }
}, },
"adminContactEmail":{
"adminContactEmail": {
"type": "string", "type": "string",
"minLength": 1,
"minLength": 1,
"metadata": { "metadata": {
"description": "The contact email address for the admin account." "description": "The contact email address for the admin account."
} }
}, },
"adminPassword":{
"adminPassword": {
"type": "securestring", "type": "securestring",
"minLength": 16, "minLength": 16,
"metadata": { "metadata": {

Loading…
Cancel
Save