Skip to content

Commit 5b6dd96

Browse files
authored
Added ARM Template
1 parent 2819c63 commit 5b6dd96

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

articles/hdinsight/domain-joined/identity-broker.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,46 @@ The ID Broker feature will add one extra VM to the cluster. This VM is the ID Br
4141

4242
![Option to enable ID Broker](./media/identity-broker/identity-broker-enable.png)
4343

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+
4484
## Tool integration
4585

4686
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

Comments
 (0)