diff --git a/infrastructure/parameters/pre-prod.parameters.json b/infrastructure/parameters/pre-prod.parameters.json index ab8b04ee69..1cb444ed72 100644 --- a/infrastructure/parameters/pre-prod.parameters.json +++ b/infrastructure/parameters/pre-prod.parameters.json @@ -71,6 +71,9 @@ "capacityContentDb": { "value": 50 }, + "licenseTypeStatisticsDb": { + "value": "BasePrice" + }, "skuStatisticsDb": { "value": "GP_Gen5" }, diff --git a/infrastructure/parameters/prod.parameters.json b/infrastructure/parameters/prod.parameters.json index b2fac87d46..d0f8a53275 100644 --- a/infrastructure/parameters/prod.parameters.json +++ b/infrastructure/parameters/prod.parameters.json @@ -74,6 +74,9 @@ "minCapacityContentDb": { "value": "0.5" }, + "licenseTypeStatisticsDb": { + "value": "BasePrice" + }, "skuStatisticsDb": { "value": "GP_Gen5" }, diff --git a/infrastructure/templates/template.json b/infrastructure/templates/template.json index 861e32bb72..d8048fdda0 100644 --- a/infrastructure/templates/template.json +++ b/infrastructure/templates/template.json @@ -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": [ @@ -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, @@ -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, @@ -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,