diff --git a/.github/workflows/deploy-foundryvtt.yml b/.github/workflows/deploy-foundryvtt.yml index f441edd..28a7aa2 100644 --- a/.github/workflows/deploy-foundryvtt.yml +++ b/.github/workflows/deploy-foundryvtt.yml @@ -22,7 +22,7 @@ env: CONTAINER_CONFIGURATION: Small # Only required if TYPE is AAS - APPSERVICEPLAN_CONFIGURATION: P1V2 + APPSERVICEPLAN_CONFIGURATION: B3 DEPLOY_DDBPROXY: true jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index dce4e56..6518c72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ The format is based on and uses the types of changes according to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.0] - 2022-11-07 + +### Changed + +- Converted App Service plan SKU to B3 and added support for B2 & B3. + ## [0.3.0] - 2022-10-14 ### Changed diff --git a/bicep/modules/appServicePlan.bicep b/bicep/modules/appServicePlan.bicep index d2b77a7..a413740 100644 --- a/bicep/modules/appServicePlan.bicep +++ b/bicep/modules/appServicePlan.bicep @@ -3,6 +3,8 @@ param appServicePlanName string @allowed([ 'B1' + 'B2' + 'B3' 'P1V2' 'P2V2' 'P3V2' @@ -19,6 +21,18 @@ var appServicePlanSkuConfigurationMap = { size: 'B1' family: 'B' } + B2: { + name: 'B2' + tier: 'Basic' + size: 'B2' + family: 'B' + } + B3: { + name: 'B3' + tier: 'Basic' + size: 'B3' + family: 'B' + } P1V2: { name: 'P1v2' tier: 'PremiumV2'