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

chore(deps): revert upgrading version for resource microsoft.web/sites #1482

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure/modules/functionApp/appSettings.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ param appSettings object
@description('The current app settings of the web application')
param currentAppSettings object

resource webApp 'Microsoft.Web/sites@2024-04-01' existing = {
resource webApp 'Microsoft.Web/sites@2023-12-01' existing = {
name: webAppName
}

Expand Down
2 changes: 1 addition & 1 deletion .azure/modules/functionApp/slackNotifier.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ resource applicationInsights 'Microsoft.Insights/components@2020-02-02' existing

var functionAppNameMaxLength = 40
var functionAppName = uniqueResourceName('${namePrefix}-slacknotifier-fa', functionAppNameMaxLength)
resource functionApp 'Microsoft.Web/sites@2024-04-01' = {
resource functionApp 'Microsoft.Web/sites@2023-12-01' = {
name: functionAppName
location: location
kind: 'functionapp'
Expand Down
Loading