-
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.
Merge pull request #17 from Nickomang/master
Added reverse proxy and certification rollover samples
- Loading branch information
Showing
22 changed files
with
7,844 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
Cert-Rollover-Sample/5-VM-1-NodeTypes-Secure.parameters_Step1.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,54 @@ | ||
{ | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"clusterName": { | ||
"value": "Cluster" | ||
}, | ||
"clusterLocation": { | ||
"value": "westus" | ||
}, | ||
"adminUserName": { | ||
"value": "testuser" | ||
}, | ||
"vmImagePublisher": { | ||
"value": "MicrosoftWindowsServer" | ||
}, | ||
"vmImageOffer": { | ||
"value": "WindowsServer" | ||
}, | ||
"vmImageSku": { | ||
"value": "2012-R2-Datacenter" | ||
}, | ||
"vmImageVersion": { | ||
"value": "latest" | ||
}, | ||
"loadBalancedAppPort1": { | ||
"value": 80 | ||
}, | ||
"loadBalancedAppPort2": { | ||
"value": 8081 | ||
}, | ||
"certificateStoreValue": { | ||
"value": "My" | ||
}, | ||
"certificateThumbprint": { | ||
"value": "thumbprint value" | ||
}, | ||
"sourceVaultValue": { | ||
"value": "/subscriptions/subscription value/resourceGroups/key vault resource group name/providers/Microsoft.KeyVault/vaults/key vault name" | ||
}, | ||
"certificateUrlValue": { | ||
"value": "Refers to the location URL in your key vault where the certificate was uploaded, it is should be in the format of https://<name of the vault>.vault.azure.net:443/secrets/<exact location>" | ||
}, | ||
"clusterProtectionLevel": { | ||
"value": "EncryptAndSign" | ||
}, | ||
"storageAccountType": { | ||
"value": "Standard_LRS" | ||
}, | ||
"supportLogStorageAccountType": { | ||
"value": "Standard_LRS" | ||
} | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
Cert-Rollover-Sample/5-VM-1-NodeTypes-Secure.parameters_Step2.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,60 @@ | ||
{ | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"clusterName": { | ||
"value": "Cluster" | ||
}, | ||
"clusterLocation": { | ||
"value": "westus" | ||
}, | ||
"adminUserName": { | ||
"value": "testuser" | ||
}, | ||
"vmImagePublisher": { | ||
"value": "MicrosoftWindowsServer" | ||
}, | ||
"vmImageOffer": { | ||
"value": "WindowsServer" | ||
}, | ||
"vmImageSku": { | ||
"value": "2012-R2-Datacenter" | ||
}, | ||
"vmImageVersion": { | ||
"value": "latest" | ||
}, | ||
"loadBalancedAppPort1": { | ||
"value": 80 | ||
}, | ||
"loadBalancedAppPort2": { | ||
"value": 8081 | ||
}, | ||
"certificateStoreValue": { | ||
"value": "My" | ||
}, | ||
"secCertificateThumbprint": { | ||
"value": "thumbprint value" | ||
}, | ||
"secCertificateUrlValue": { | ||
"value": "Refers to the location URL in your key vault where the certificate was uploaded, it is should be in the format of https://<name of the vault>.vault.azure.net:443/secrets/<exact location>" | ||
}, | ||
"certificateThumbprint": { | ||
"value": "thumbprint value" | ||
}, | ||
"sourceVaultValue": { | ||
"value": "/subscriptions/subscription value/resourceGroups/key vault resource group name/providers/Microsoft.KeyVault/vaults/key vault name" | ||
}, | ||
"certificateUrlValue": { | ||
"value": "Refers to the location URL in your key vault where the certificate was uploaded, it is should be in the format of https://<name of the vault>.vault.azure.net:443/secrets/<exact location>" | ||
}, | ||
"clusterProtectionLevel": { | ||
"value": "EncryptAndSign" | ||
}, | ||
"storageAccountType": { | ||
"value": "Standard_LRS" | ||
}, | ||
"supportLogStorageAccountType": { | ||
"value": "Standard_LRS" | ||
} | ||
} | ||
} |
Oops, something went wrong.