You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/hdinsight/domain-joined/identity-broker.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,46 @@ The ID Broker feature will add one extra VM to the cluster. This VM is the ID Br
41
41
42
42

43
43
44
+
### Using Azure Resource Manager templates
45
+
If you add a new role called `idbrokernode` with the following attributes to the compute profile of your template, then the cluster will get created with the id broker node enabled:
46
+
47
+
```json
48
+
.
49
+
.
50
+
.
51
+
"computeProfile": {
52
+
"roles": [
53
+
{
54
+
"autoscale": null,
55
+
"name": "headnode",
56
+
....
57
+
},
58
+
{
59
+
"autoscale": null,
60
+
"name": "workernode",
61
+
....
62
+
},
63
+
{
64
+
"autoscale": null,
65
+
"name": "idbrokernode",
66
+
"targetInstanceCount": 1,
67
+
"hardwareProfile": {
68
+
"vmSize": "Standard_A2_V2"
69
+
},
70
+
"virtualNetworkProfile": {
71
+
"id": "string",
72
+
"subnet": "string"
73
+
},
74
+
"scriptActions": [],
75
+
"dataDisksGroups": null
76
+
}
77
+
]
78
+
}
79
+
.
80
+
.
81
+
.
82
+
```
83
+
44
84
## Tool integration
45
85
46
86
The HDInsight [IntelliJ plug-in](https://docs.microsoft.com/azure/hdinsight/spark/apache-spark-intellij-tool-plugin#integrate-with-hdinsight-identity-broker-hib) is updated to support OAuth. You can use this plug-in to connect to the cluster and submit jobs.
0 commit comments