Skip to content

Commit

Permalink
Merge pull request #5504 from dfe-analytical-services/EES-5778
Browse files Browse the repository at this point in the history
EES-5778 Enable Azure Hybrid Benefit in Azure SQL statistics databases
  • Loading branch information
benoutram authored Jan 8, 2025
2 parents 7470ba9 + 4b5b44c commit dc8ee47
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions infrastructure/parameters/pre-prod.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@
"capacityContentDb": {
"value": 50
},
"licenseTypeStatisticsDb": {
"value": "BasePrice"
},
"skuStatisticsDb": {
"value": "GP_Gen5"
},
Expand Down
3 changes: 3 additions & 0 deletions infrastructure/parameters/prod.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
"minCapacityContentDb": {
"value": "0.5"
},
"licenseTypeStatisticsDb": {
"value": "BasePrice"
},
"skuStatisticsDb": {
"value": "GP_Gen5"
},
Expand Down
19 changes: 19 additions & 0 deletions infrastructure/templates/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,22 @@
"test"
]
},
"licenseTypeContentDb": {
"type": "string",
"defaultValue": "LicenseIncluded",
"allowedValues": [
"BasePrice",
"LicenseIncluded"
]
},
"licenseTypeStatisticsDb": {
"type": "string",
"defaultValue": "LicenseIncluded",
"allowedValues": [
"BasePrice",
"LicenseIncluded"
]
},
"skuContentDb": {
"type": "string",
"allowedValues": [
Expand Down Expand Up @@ -2291,6 +2307,7 @@
},
"properties": {
"collation": "SQL_Latin1_General_CP1_CI_AS",
"licenseType": "[parameters('licenseTypeStatisticsDb')]",
"maxSizeBytes": "[parameters('maxStatsDbSizeBytes')]",
"catalogCollation": "SQL_Latin1_General_CP1_CI_AS",
"zoneRedundant": false,
Expand Down Expand Up @@ -2328,6 +2345,7 @@
},
"properties": {
"collation": "SQL_Latin1_General_CP1_CI_AS",
"licenseType": "[parameters('licenseTypeContentDb')]",
"maxSizeBytes": "[parameters('maxContentDbSizeBytes')]",
"catalogCollation": "SQL_Latin1_General_CP1_CI_AS",
"zoneRedundant": false,
Expand Down Expand Up @@ -2535,6 +2553,7 @@
},
"properties": {
"collation": "SQL_Latin1_General_CP1_CI_AS",
"licenseType": "[parameters('licenseTypeStatisticsDb')]",
"maxSizeBytes": "[parameters('maxStatsDbSizeBytes')]",
"catalogCollation": "SQL_Latin1_General_CP1_CI_AS",
"zoneRedundant": false,
Expand Down

0 comments on commit dc8ee47

Please sign in to comment.