Skip to content

Commit

Permalink
Added B2 & B3 support and changed to B3
Browse files Browse the repository at this point in the history
  • Loading branch information
PlagueHO committed Nov 6, 2022
1 parent 917073e commit 7cbcede
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-foundryvtt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
CONTAINER_CONFIGURATION: Small

# Only required if TYPE is AAS
APPSERVICEPLAN_CONFIGURATION: P1V2
APPSERVICEPLAN_CONFIGURATION: B3
DEPLOY_DDBPROXY: true

jobs:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 14 additions & 0 deletions bicep/modules/appServicePlan.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ param appServicePlanName string

@allowed([
'B1'
'B2'
'B3'
'P1V2'
'P2V2'
'P3V2'
Expand All @@ -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'
Expand Down

0 comments on commit 7cbcede

Please sign in to comment.