Skip to content

Commit e9154e1

Browse files
authored
Fix typo in node type name reference
The node type name `vmNodeType0Name` is referenced as a string instead of a variable. See also [this](Azure-Samples/service-fabric-cluster-templates#23) corresponding PR.
1 parent ed51e14 commit e9154e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/service-fabric/service-fabric-cluster-creation-create-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The cluster authentication certificate must be configured in both the Service Fa
7979
"extensionProfile": {
8080
"extensions": [
8181
{
82-
"name": "[concat('ServiceFabricNodeVmExt','_vmNodeType0Name')]",
82+
"name": "[concat('ServiceFabricNodeVmExt_',variables('vmNodeType0Name'))]",
8383
"properties": {
8484
...
8585
"settings": {

0 commit comments

Comments
 (0)