-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazuredeploy.json
More file actions
81 lines (81 loc) · 2.66 KB
/
azuredeploy.json
File metadata and controls
81 lines (81 loc) · 2.66 KB
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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"iotHubConnectionString" : {
"type": "securestring",
"metadata" : {
"description" : "IoT Hub connection string"
}
},
"eventHubConsumerGroup": {
"type": "string",
"defaultValue" : "$Default",
"metadata": {
"description": "Consumer Group to read values from, eg: $Default"
}
},
"dnsPrefix" : {
"type" : "string",
"defaultValue": "iothubux1",
"metadata": {
"description" : "DNS Prefix."
}
}
},
"functions": [],
"variables": {},
"resources": [{
"name": "IoTHub UX Web App",
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2021-03-01",
"location": "[resourceGroup().location]",
"properties": {
"containers": [
{
"name": "iothubux",
"properties": {
"image": "docker.io/ridomin/iothubux:latest",
"ports": [
{
"port": 80
}
],
"environmentVariables": [
{
"name": "IOTHUB_CONNECTION_STRING",
"secureValue" : "[parameters('iotHubConnectionString')]"
},
{
"name":"EVENTHUB_CONSUMER_GROUP",
"value" : "[parameters('eventHubConsumerGroup')]"
},
{
"name" : "PORT",
"value" : "80"
}
],
"resources": {
"requests": {
"cpu": 1,
"memoryInGB": 1
}
}
}
}
],
"osType": "Linux",
"ipAddress": {
"type": "Public",
"dnsNameLabel" : "[parameters('dnsPrefix')]",
"ports": [
{
"protocol": "TCP",
"port": 80
}
]
}
}
}],
"outputs": {}
}