forked from gaurabe/armtemplatesrepository
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsbus.json
102 lines (102 loc) · 3.64 KB
/
sbus.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"sbus_name": {
"defaultValue": "sbusiothub",
"type": "String"
},
"location": {
"defaultValue": "West Europe",
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.ServiceBus/namespaces",
"sku": {
"name": "Standard",
"tier": "Standard"
},
"kind": "Messaging",
"name": "[parameters('sbus_name')]",
"apiVersion": "2015-08-01",
"location": "[parameters('location')]",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"status": "Active",
"createdAt": "2017-02-23T22:43:54.507Z",
"serviceBusEndpoint": "[concat('https://', parameters('sbus_name'),'.servicebus.windows.net:443/')]",
"enabled": true,
"updatedAt": "2017-02-23T22:44:20.81Z"
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "papayaqueue",
"type": "Queues",
"dependsOn": [
"[concat('Microsoft.ServiceBus/namespaces/', parameters('sbus_name'))]"
],
"properties": {
},
"resources": [
]
}
],
"dependsOn": []
},
{
"type": "Microsoft.ServiceBus/namespaces/AuthorizationRules",
"name": "[concat(parameters('sbus_name'),'/RootManageSharedAccessKey')]",
"apiVersion": "2015-08-01",
"properties": {
"rights": [
"Listen",
"Manage",
"Send"
]
},
"resources": [],
"dependsOn": [
"[resourceId('Microsoft.ServiceBus/namespaces', parameters('sbus_name'))]"
]
},
{
"type": "Microsoft.ServiceBus/namespaces/queues",
"name": "[concat(parameters('sbus_name'),'/iothub-queue')]",
"apiVersion": "2015-08-01",
"location": "[resourceGroup().location]",
"properties": {
"maxSizeInMegabytes": 2048,
"requiresDuplicateDetection": false,
"requiresSession": false,
"defaultMessageTimeToLive": "14.00:00:00",
"deadLetteringOnMessageExpiration": false,
"enableBatchedOperations": true,
"isAnonymousAccessible": false,
"status": "Active",
"createdAt": "2017-02-23T23:11:18.407Z",
"updatedAt": "2017-02-23T23:11:28.673Z",
"accessedAt": "0001-01-01T00:00:00Z",
"supportOrdering": false,
"countDetails": {
"activeMessageCount": 0,
"deadLetterMessageCount": 0,
"scheduledMessageCount": 0,
"transferMessageCount": 0,
"transferDeadLetterMessageCount": 0
},
"autoDeleteOnIdle": "10675199.02:48:05.4775807",
"enablePartitioning": true,
"enableExpress": false
},
"resources": [],
"dependsOn": [
"[resourceId('Microsoft.ServiceBus/namespaces', parameters('sbus_name'))]"
]
}
]
}