Skip to content

Commit 68d1cc2

Browse files
authored
Update templates to ~4
@patelchandni can you please verify that this doesn't break anything in these templates? Do we also need to set the .NET version to 6?
1 parent d460d11 commit 68d1cc2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-functions/functions-infrastructure-as-code.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ resource functionApp 'Microsoft.Web/sites@2022-03-01' = {
13321332
}
13331333
{
13341334
name: 'FUNCTIONS_EXTENSION_VERSION'
1335-
value: '~3'
1335+
value: '~4'
13361336
}
13371337
{
13381338
name: 'DOCKER_REGISTRY_SERVER_URL'
@@ -1392,7 +1392,7 @@ resource functionApp 'Microsoft.Web/sites@2022-03-01' = {
13921392
},
13931393
{
13941394
"name": "FUNCTIONS_EXTENSION_VERSION",
1395-
"value": "~3"
1395+
"value": "~4"
13961396
},
13971397
{
13981398
"name": "DOCKER_REGISTRY_SERVER_URL",
@@ -1552,7 +1552,7 @@ resource functionApp 'Microsoft.Web/sites@2022-03-01' = {
15521552
appSettings: [
15531553
{
15541554
name: 'FUNCTIONS_EXTENSION_VERSION'
1555-
value: '~3'
1555+
value: '~4'
15561556
}
15571557
{
15581558
name: 'AzureWebJobsStorage'
@@ -1598,7 +1598,7 @@ resource functionApp 'Microsoft.Web/sites@2022-03-01' = {
15981598
"appSettings": [
15991599
{
16001600
"name": "FUNCTIONS_EXTENSION_VERSION",
1601-
"value": "~3"
1601+
"value": "~4"
16021602
},
16031603
{
16041604
"name": "AzureWebJobsStorage",
@@ -1640,7 +1640,7 @@ Considerations for custom deployments:
16401640
appSettings: [
16411641
{
16421642
name: 'FUNCTIONS_EXTENSION_VERSION'
1643-
value: '~3'
1643+
value: '~4'
16441644
}
16451645
{
16461646
name: 'Project'
@@ -1660,7 +1660,7 @@ Considerations for custom deployments:
16601660
properties: {
16611661
AzureWebJobsStorage: 'DefaultEndpointsProtocol=https;AccountName=${storageAccountName};AccountKey=${storageAccount.listKeys().keys[0].value}'
16621662
AzureWebJobsDashboard: 'DefaultEndpointsProtocol=https;AccountName=${storageAccountName};AccountKey=${storageAccount.listKeys().keys[0].value}'
1663-
FUNCTIONS_EXTENSION_VERSION: '~3'
1663+
FUNCTIONS_EXTENSION_VERSION: '~4'
16641664
FUNCTIONS_WORKER_RUNTIME: 'dotnet'
16651665
Project: 'src'
16661666
}
@@ -1698,7 +1698,7 @@ Considerations for custom deployments:
16981698
"appSettings": [
16991699
{
17001700
"name": "FUNCTIONS_EXTENSION_VERSION",
1701-
"value": "~3"
1701+
"value": "~4"
17021702
},
17031703
{
17041704
"name": "Project",
@@ -1719,7 +1719,7 @@ Considerations for custom deployments:
17191719
"properties": {
17201720
"AzureWebJobsStorage": "[format('DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1}', variables('storageAccountName'), listKeys(variables('storageAccountName'), '2021-09-01').keys[0].value)]",
17211721
"AzureWebJobsDashboard": "[format('DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1}', variables('storageAccountName'), listKeys(variables('storageAccountName'), '2021-09-01').keys[0].value)]",
1722-
"FUNCTIONS_EXTENSION_VERSION": "~3",
1722+
"FUNCTIONS_EXTENSION_VERSION": "~4",
17231723
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
17241724
"Project": "src"
17251725
},

0 commit comments

Comments
 (0)