Skip to content

Commit

Permalink
Merge pull request #17 from Nickomang/master
Browse files Browse the repository at this point in the history
Added reverse proxy and certification rollover samples
  • Loading branch information
Nicolas Oman authored Oct 24, 2019
2 parents c119d33 + fdf3df0 commit b604b86
Show file tree
Hide file tree
Showing 22 changed files with 7,844 additions and 0 deletions.
54 changes: 54 additions & 0 deletions Cert-Rollover-Sample/5-VM-1-NodeTypes-Secure.parameters_Step1.json
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 Cert-Rollover-Sample/5-VM-1-NodeTypes-Secure.parameters_Step2.json
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"
}
}
}
Loading

0 comments on commit b604b86

Please sign in to comment.