Skip to content

Commit 71f2f71

Browse files
Merge pull request #284094 from andystaples/andystaples/update-ps-md-guide
First draft of updated Managed Dependencies guide
2 parents 3652104 + e568c8d commit 71f2f71

File tree

4 files changed

+117
-96
lines changed

4 files changed

+117
-96
lines changed

articles/azure-functions/durable/durable-functions-powershell-v2-sdk-migration-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Update-AzFunctionAppSetting -Name <FUNCTION_APP_NAME> -ResourceGroupName <RESOUR
8484

8585
### Install and import the SDK
8686

87-
You have two options for installing the SDK package: it can be installed as a [managed dependency](./../functions-reference-powershell.md#dependency-management), or as a [custom module](./../functions-reference-powershell.md#custom-modules).
87+
You have two options for installing the SDK package: it can be installed using [Managed Dependencies](./../functions-reference-powershell.md#managed-dependencies-feature), or [bundled with your app content](./../functions-reference-powershell.md#including-modules-in-app-content).
8888
In this section, we describe both options, but only one of them is needed.
8989

9090
#### Installation option 1: Use managed dependencies
@@ -119,7 +119,7 @@ Then you simply need to specify an entry for the DF SDK in your `requirements.ps
119119

120120
#### Installation option 2: Use custom modules
121121

122-
To install the standalone DF SDK as a custom module, you need to follow the [guidance regarding creating an app-level modules folder](./../functions-reference-powershell.md#function-app-level-modules-folder). Make sure to review the aforementioned docs for details.
122+
To install the standalone DF SDK as a custom module, you need to follow the [guidance regarding including modules in app content](./../functions-reference-powershell.md#including-modules-in-app-content). Make sure to review the aforementioned docs for details.
123123
In summary, you'll need to place the SDK package inside a `".\Modules"` directory located at the root of your app.
124124

125125
For example, from within your application's root, and after creating a `".\Modules"` directory, you may download the standalone SDK into the modules directory as such:

articles/azure-functions/flex-consumption-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Keep these other considerations in mind when using Flex Consumption plan:
138138
+ **Regions**: Not all regions are currently supported. To learn more, see [View currently supported regions](flex-consumption-how-to.md#view-currently-supported-regions).
139139
+ **Deployments**: Deployment slots are not currently supported.
140140
+ **Scale**: The lowest maximum scale is currently `40`. The highest currently supported value is `1000`.
141-
+ **Managed dependencies**: [Managed dependencies in PowerShell](functions-reference-powershell.md#dependency-management) aren't supported by Flex Consumption. You must instead [define your own custom modules](functions-reference-powershell.md#custom-modules).
141+
+ **Managed dependencies**: [Managed dependencies in PowerShell](functions-reference-powershell.md#managed-dependencies-feature) aren't supported by Flex Consumption. You must instead [upload modules with app content](functions-reference-powershell.md#including-modules-in-app-content).
142142
+ **Diagnostic settings**: Diagnostic settings are not currently supported.
143143
+ **Certificates**: Loading certificates with the WEBSITE_LOAD_CERTIFICATES app setting is currently not supported.
144144
+ **Key Vault References**: Key Vault references in app settings don't work when Key Vault is network access restricted, even if the function app has Virtual Network integration. The current workaround is to directly reference the Key Vault in code and read the required secrets.

0 commit comments

Comments
 (0)