-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation update for Stateless NodeTypes in Service Fabric (#37)
* Stateless Node Type Template * Added nsg rules * Fix
- Loading branch information
Saket Harsh
authored
Oct 5, 2020
1 parent
2ffac5a
commit a9060ff
Showing
5 changed files
with
1,511 additions
and
0 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
10-VM-2-NodeTypes-Windows-Stateless-Secure/AzureDeploy.Parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"clusterLocation": { | ||
"value": "GEN-UNIQUE" | ||
}, | ||
"clusterName": { | ||
"value": "GEN-UNIQUE" | ||
}, | ||
"adminUserName": { | ||
"value": "GEN-UNIQUE" | ||
}, | ||
"adminPassword": { | ||
"value": "GEN-UNIQUE" | ||
}, | ||
"vmImagePublisher": { | ||
"value": "MicrosoftWindowsServer" | ||
}, | ||
"vmImageOffer": { | ||
"value": "WindowsServer" | ||
}, | ||
"vmImageSku": { | ||
"value": "2016-Datacenter-with-Containers" | ||
}, | ||
"vmImageVersion": { | ||
"value": "latest" | ||
}, | ||
"loadBalancedAppPort1": { | ||
"value": 80 | ||
}, | ||
"loadBalancedAppPort2": { | ||
"value": 443 | ||
}, | ||
"clusterProtectionLevel": { | ||
"value": "EncryptAndSign" | ||
}, | ||
"certificateStoreValue": { | ||
"value": "My" | ||
}, | ||
"certificateThumbprint": { | ||
"value": "GEN-SF-CERT-THUMBPRINT" | ||
}, | ||
"sourceVaultValue": { | ||
"value": "GEN-KEYVAULT-RESOURCE-ID" | ||
}, | ||
"certificateUrlValue": { | ||
"value": "GEN-SF-CERT-URL" | ||
}, | ||
"storageAccountType": { | ||
"value": "Standard_LRS" | ||
}, | ||
"supportLogStorageAccountType": { | ||
"value": "Standard_LRS" | ||
}, | ||
"applicationDiagnosticsStorageAccountType": { | ||
"value": "Standard_LRS" | ||
}, | ||
"nt0InstanceCount": { | ||
"value": 5 | ||
}, | ||
"nt1InstanceCount" : { | ||
"value": 5 | ||
}, | ||
"vmNodeType0Size": { | ||
"value": "Standard_D2_V2" | ||
} | ||
} | ||
} |
Oops, something went wrong.