Skip to content

Commit

Permalink
chore: Update appServicePlanConfiguration to 'P0V3' in bicep files
Browse files Browse the repository at this point in the history
  • Loading branch information
PlagueHO committed May 31, 2024
1 parent 7e4bdab commit c407460
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
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.5.0] - 2024-06-01

### Added

- Added support for P0V3 App Service Plan SKU in Bicep.

## [0.4.0] - 2022-11-07

### Changed
Expand Down
3 changes: 2 additions & 1 deletion bicep/appService.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ param storageConfiguration string = 'Premium_100GB'
'P1V2'
'P2V2'
'P3V2'
'P0V3'
'P1V3'
'P2V3'
'P3V3'
])
param appServicePlanConfiguration string = 'P1V2'
param appServicePlanConfiguration string = 'P0V3'

@description('Deploy a D&D Beyond proxy into the app service plan.')
param deployDdbProxy bool = false
Expand Down
9 changes: 8 additions & 1 deletion bicep/modules/appServicePlan.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ param appServicePlanName string
'P1V2'
'P2V2'
'P3V2'
'P0V3'
'P1V3'
'P2V3'
'P3V3'
])
param appServicePlanConfiguration string = 'F1'
param appServicePlanConfiguration string = 'P0V3'

var appServicePlanSkuConfigurationMap = {
F1: {
Expand Down Expand Up @@ -58,6 +59,12 @@ var appServicePlanSkuConfigurationMap = {
size: 'P3v2'
family: 'Pv2'
}
P0V3: {
name: 'P0v3'
tier: 'PremiumV3'
size: 'P0v3'
family: 'Pv3'
}
P1V3: {
name: 'P1v3'
tier: 'PremiumV3'
Expand Down

0 comments on commit c407460

Please sign in to comment.