Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[829] Add new REST API for data generation. #986

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
Update API versions in appservice.bicep
  • Loading branch information
bsherwin authored Dec 20, 2024
commit fadb6c0d0a1368e9a1c7f87cafe122429abbdfe2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ param skuName string = 'B1'
@description('Region to deploy resources')
param location string = resourceGroup().location

resource appServicePlan 'Microsoft.Web/serverfarms@2022-03-01' = {
resource appServicePlan 'Microsoft.Web/serverfarms@2024-04-01' = {
name: '${appName}-plan'
location: location
sku: {
Expand All @@ -23,7 +23,7 @@ resource appServicePlan 'Microsoft.Web/serverfarms@2022-03-01' = {
}
}

resource appService 'Microsoft.Web/sites@2022-03-01' = {
resource appService 'Microsoft.Web/sites@2024-04-01' = {
name: appName
location: location
properties: {
Expand Down
Loading