This repository has been archived by the owner on Feb 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
azuredeploy.json
168 lines (168 loc) · 5.98 KB
/
azuredeploy.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"webAppName": {
"type": "string",
"defaultValue": "hotel-coupon-mgmt",
"metadata": {
"description": "The name of the web app that you wish to create."
}
},
"mySQLAdminLoginName": {
"type": "string",
"defaultValue": "azureuser",
"metadata": {
"description": "Admin login name cannot be 'azure_superuser', 'admin', 'administrator', 'root', 'guest' or 'public'."
}
},
"mySQLAdminLoginPassword": {
"type": "securestring",
"defaultValue": "",
"metadata": {
"description": "This field should be between 8 and 128 characters long. Your password must contain characters from three of the following categories – English uppercase letters, English lowercase letters, numbers (0-9), and non-alphanumeric characters (!, $, #, %, etc.)."
}
},
"sourceCodeRepositoryURL": {
"type": "string",
"defaultValue": "https://github.com/<YourAccount>/SmartHotel360-CouponManagement",
"metadata": {
"description": "Source code repository URL"
}
},
"sourceCodeBranch": {
"type": "string",
"defaultValue": "master",
"metadata": {
"description": "Sourcecode Repo branch"
}
},
"sourceCodeManualIntegration": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "Use 'true' if you are deploying from the base repo, 'false' if you are deploying from your own fork. If you're using 'false', make sure you have admin permissions to the repo. If you get an error, you should add GitHub integration to another web app manually, so that you get a GitHub access token associated with your Azure Subscription."
}
}
},
"variables": {
"location": "[resourceGroup().location]",
"webAppName": "[parameters('webAppName')]",
"servicePlanName": "[variables('webAppName')]",
"mySQLServerName": "[variables('webAppName')]",
"mySQLDatabaseName": "hotel_coupon"
},
"resources": [
{
"apiVersion": "2017-12-01-preview",
"type": "Microsoft.DBforMySQL/servers",
"name": "[variables('mySQLServerName')]",
"sku": {
"name": "B_Gen5_1",
"tier": "Basic",
"family": "Gen5",
"capacity": 1
},
"location": "[variables('location')]",
"properties": {
"administratorLogin": "[parameters('mySQLAdminLoginName')]",
"administratorLoginPassword": "[parameters('mySQLAdminLoginPassword')]",
"storageProfile": {
"storageMB": 5120,
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled"
},
"version": "5.7",
"sslEnforcement": "Disabled"
},
"resources": [
{
"apiVersion": "2017-12-01-preview",
"type": "databases",
"name": "[variables('mySQLDatabaseName')]",
"properties": {
"charset": "utf8",
"collation": "utf8_general_ci"
},
"dependsOn": [
"[resourceId('Microsoft.DBforMySQL/servers', variables('mySQLServerName'))]"
]
},
{
"apiVersion": "2017-12-01-preview",
"type": "firewallRules",
"name": "AllowAllWindowsAzureIps",
"properties": {
"startIpAddress": "0.0.0.0",
"endIpAddress": "0.0.0.0"
},
"dependsOn": [
"[resourceId('Microsoft.DBforMySQL/servers', variables('mySQLServerName'))]"
]
}
]
},
{
"apiVersion": "2016-09-01",
"type": "Microsoft.Web/serverfarms",
"name": "[variables('servicePlanName')]",
"kind": "app",
"location": "[variables('location')]",
"sku": {
"name": "B1",
"tier": "Basic",
"size": "B1",
"family": "B",
"capacity": 1
}
},
{
"apiVersion": "2016-08-01",
"type": "Microsoft.Web/sites",
"name": "[variables('webAppName')]",
"kind": "app",
"location": "[variables('location')]",
"properties": {
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('servicePlanName'))]",
"siteConfig": {
"AlwaysOn": true,
"javaVersion": "1.8.0_172_ZULU",
"javaContainer": "TOMCAT",
"javaContainerVersion": "8.0"
}
},
"resources": [
{
"apiVersion": "2016-08-01",
"type": "config",
"name": "appsettings",
"properties": {
"SPRING_DATASOURCE_URL": "[concat('jdbc:mysql://', variables('mySQLServerName'), '.mysql.database.azure.com:3306/', variables('mySQLDatabaseName'), '?verifyServerCertificate=true&useSSL=true&requireSSL=false')]",
"SPRING_DATASOURCE_USERNAME": "[concat(parameters('mySQLAdminLoginName'), '@', variables('mySQLServerName'))]",
"SPRING_DATASOURCE_PASSWORD": "[parameters('mySQLAdminLoginPassword')]"
},
"dependsOn": [
"[resourceId('Microsoft.Web/sites', parameters('webAppName'))]"
]
},
{
"apiVersion": "2016-08-01",
"type": "sourcecontrols",
"name": "web",
"properties": {
"RepoUrl": "[parameters('sourceCodeRepositoryURL')]",
"branch": "[parameters('sourceCodeBranch')]",
"IsManualIntegration": "[parameters('sourceCodeManualIntegration')]"
},
"dependsOn": [
"[resourceId('Microsoft.Web/sites/', variables('webAppName'))]",
"[resourceId('Microsoft.Web/Sites/config', variables('webAppName'), 'appsettings')]"
]
}
],
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('servicePlanName'))]"
]
}
]
}