Skip to content

Commit

Permalink
chore: lower case kind value to avoid diff everytime
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajagrawal16 committed Dec 10, 2024
1 parent f6347ba commit 8af654a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion avm/res/web/serverfarm/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ resource avmTelemetry 'Microsoft.Resources/deployments@2024-03-01' = if (enableT

resource appServicePlan 'Microsoft.Web/serverfarms@2022-09-01' = {
name: name
kind: kind
kind: toLower(kind)
location: location
tags: tags
sku: {
Expand Down
6 changes: 3 additions & 3 deletions avm/res/web/serverfarm/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.30.23.60470",
"templateHash": "136819997431198276"
"version": "0.32.4.45862",
"templateHash": "8906874924881073178"
},
"name": "App Service Plan",
"description": "This module deploys an App Service Plan.",
Expand Down Expand Up @@ -388,7 +388,7 @@
"type": "Microsoft.Web/serverfarms",
"apiVersion": "2022-09-01",
"name": "[parameters('name')]",
"kind": "[parameters('kind')]",
"kind": "[toLower(parameters('kind'))]",
"location": "[parameters('location')]",
"tags": "[parameters('tags')]",
"sku": {
Expand Down

0 comments on commit 8af654a

Please sign in to comment.