|
35 | 35 | "ipId": "[resourceId('Microsoft.Network/publicIPAddresses/', variables('ipName'))]",
|
36 | 36 | "lbName": "postgresLoadBalancer",
|
37 | 37 | "lbId": "[resourceId('Microsoft.Network/loadBalancers/', variables('lbName'))]",
|
38 |
| - "vnetName": "[concat(parameters('clusterName'), '-net')]", |
39 |
| - "vnetId": "[resourceId('Microsoft.Network/virtualNetworks', variables('vnetName'))]", |
40 |
| - "zookeeperNetName": "zookeeper-subnet", |
| 38 | + "vnetName": "dcos-vnet-F0547AD4", |
| 39 | + "vnetId": "['testht', resourceId('Microsoft.Network/virtualNetworks', variables('vnetName'))]", |
| 40 | + "zookeeperNetName": "dcos-agentPublicSubnet", |
41 | 41 | "zookeeperInstanceCount": 3,
|
42 |
| - "postgresNetName": "postgres-subnet", |
| 42 | + "postgresNetName": "dcos-agentPublicSubnet", |
43 | 43 | "postgresInstanceCount": "[parameters('instanceCount')]",
|
44 | 44 | "osType": {
|
45 | 45 | "publisher": "Canonical",
|
|
49 | 49 | }
|
50 | 50 | },
|
51 | 51 | "resources": [
|
52 |
| - { |
53 |
| - "type": "Microsoft.Network/virtualNetworks", |
54 |
| - "name": "[variables('vnetName')]", |
55 |
| - "apiVersion": "2015-06-15", |
56 |
| - "location": "[resourceGroup().location]", |
57 |
| - "tags": {}, |
58 |
| - "properties": { |
59 |
| - "addressSpace": { |
60 |
| - "addressPrefixes": [ |
61 |
| - "10.0.0.0/16" |
62 |
| - ] |
63 |
| - }, |
64 |
| - "subnets": [ |
65 |
| - { |
66 |
| - "name": "[variables('zookeeperNetName')]", |
67 |
| - "properties": { |
68 |
| - "addressPrefix": "10.0.100.0/24" |
69 |
| - } |
70 |
| - }, |
71 |
| - { |
72 |
| - "name": "[variables('postgresNetName')]", |
73 |
| - "properties": { |
74 |
| - "addressPrefix": "10.0.101.0/24" |
75 |
| - } |
76 |
| - } |
77 |
| - ] |
78 |
| - }, |
79 |
| - "dependsOn": [] |
80 |
| - }, |
81 | 52 | {
|
82 | 53 | "type": "Microsoft.Storage/storageAccounts",
|
83 | 54 | "name": "[concat(variables('storageAccountPrefix')[copyIndex()], variables('storageAccountSuffix'))]",
|
|
0 commit comments