-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathise_azuredeploy.json
106 lines (106 loc) · 4.23 KB
/
ise_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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"integrationServiceEnvironmentName": {
"type": "string",
"defaultValue":"integrationServiceEnvironmentName",
"metadata": {
"description": "The name of the Integration Service Environment."
}
},
"location": {
"defaultValue": "[resourceGroup().location]",
"type": "string",
"metadata": {
"description": "Location for all resources."
}
},
"integrationServiceEnvironmentSku": {
"type": "string",
"defaultValue": "Developer",
"allowedValues": ["Developer", "Premium"],
"metadata": {
"description": "The SKU for the Integration Service Environment, either Developer or Premium."
}
},
"skuCapacity": {
"defaultValue": 0,
"type": "int",
"metadata": {
"description": "The number of scale units for the Integration Service Environment. 0 is the base unit."
}
},
"accessEndpointType": {
"type": "string",
"defaultValue": "Internal",
"allowedValues": ["Internal", "External"],
"metadata": {
"description": "The type of access endpoint to use for the Integration Service Environment. The endpoint determine whether request or webhook triggers on logic apps in the Integration Service Environment can receive calls from outside the virtual network."
}
},
"managedConnectors": {
"type": "array",
"defaultValue":["servicebus", "azureblob"],
"metadata": {
"description": "The list of managed connectors to deploy into the ISE in JSON array format (e.g. [\"sql\", \"ftp\" ...]). The values must be from this list: sql;ftp;azureblob;azurefile;azurequeues;azuretables;sftpwithssh;edifact;x12;servicebus;documentdb;eventhubs;mq;sqldw;db2;smtp;si3270"
}
}
},
"variables": {
"vnetName" : "myvnet-vnet",
"subnet1Name":"logicapp-subnet-1",
"subnet2Name":"logicapp-subnet-2",
"subnet3Name":"logicapp-subnet-3",
"subnet4Name":"logicapp-subnet-4"
},
"resources": [
{
"type": "Microsoft.Logic/integrationServiceEnvironments",
"apiVersion": "2019-05-01",
"name": "[parameters('integrationServiceEnvironmentName')]",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('integrationServiceEnvironmentSku')]",
"capacity": "[parameters('skuCapacity')]"
},
"properties": {
"networkConfiguration": {
"accessEndpoint": {
"type": "[parameters('accessEndpointType')]"
},
"subnets":
[
{
"id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnet1Name'))]"
},
{
"id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnet2Name'))]"
},
{
"id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnet3Name'))]"
},
{
"id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnet4Name'))]"
}
]
}
}
},
{
"apiVersion": "2019-05-01",
"type": "Microsoft.Logic/integrationServiceEnvironments/ManagedApis",
"name": "[concat(parameters('integrationServiceEnvironmentName'), '/', parameters('managedConnectors')[copyindex()])]",
"location": "[parameters('location')]",
"dependsOn": [
"[concat('Microsoft.Logic/integrationServiceEnvironments/', parameters('integrationServiceEnvironmentName'))]"
],
"copy": {
"name": "queueCopy",
"count": "[length(parameters('managedConnectors'))]"
},
"properties": {
}
}
]
}