Skip to content

Commit

Permalink
Added Sku Tier to the Hosting Plan (#677)
Browse files Browse the repository at this point in the history
* Rebased Teams extension.

* Update extensions/teams/appPackage/manifest.json

Co-authored-by: Ross Smith <ross-p-smith@users.noreply.github.com>

* Updated package name.

* Min Node Version to 18

* Update extensions/teams/infra/azure.parameters.json

Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>

* Update extensions/teams/teamsapp.local.yml

Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>

* Update extensions/teams/teamsapp.local.yml

Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>

* Update extensions/teams/teamsapp.yml

Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>

* Update extensions/teams/teamsapp.local.yml

Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>

* Update extensions/teams/teamsapp.yml

Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>

* Bumped min node ver and removed dependabot dependency.

* Added sku tier for hosting plan

* Added Free and Shared to Sku Tier

---------

Co-authored-by: Ross Smith <ross-p-smith@users.noreply.github.com>
Co-authored-by: Adam Dougal <adamdougal@users.noreply.github.com>
  • Loading branch information
3 people authored Apr 12, 2024
1 parent 4a6bac8 commit 78dcb6d
Show file tree
Hide file tree
Showing 2 changed files with 178 additions and 148 deletions.
13 changes: 13 additions & 0 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ param hostingPlanName string = 'hosting-plan-${resourceToken}'
])
param hostingPlanSku string = 'B3'

@description('The sku tier for the App Service plan')
@allowed([
'Free'
'Shared'
'Basic'
'Standard'
'Premium'
'PremiumV2'
'PremiumV3'
])
param skuTier string = 'Basic'

@description('Name of Web App')
param websiteName string = 'web-${resourceToken}'

Expand Down Expand Up @@ -337,6 +349,7 @@ module hostingplan './core/host/appserviceplan.bicep' = {
location: location
sku: {
name: hostingPlanSku
tier: skuTier
}
reserved: true
tags: { Automation: 'Ignore' }
Expand Down
Loading

0 comments on commit 78dcb6d

Please sign in to comment.