Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ Next you will update your function app to use its system-assigned identity when
You've removed the storage connection string requirement for AzureWebJobsStorage by configuring your app to instead connect to blobs using managed identities.

> [!NOTE]
> The `__accountName` syntax is unique to the AzureWebJobsStorage connection and cannot be used for other storage connections. To learn to define other connections, check the reference for each trigger and binding your app uses.
> The `__accountName` syntax is unique to the AzureWebJobsStorage connection and cannot be used for other storage connections. To learn to define other connections, check the reference for each trigger and binding your app uses.Also this is only applicable for functionapps which are provisioned in dedicated appservice plan not for consumption and elastic premium as they have additional storage setting WEBSITE_CONTENTAZUREFILECONNECTIONSTRING.
Copy link

Copilot AI Sep 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing space before 'Also' and missing capitalization. Should be: '...your app uses. Also this is only applicable for function apps...' Also, 'functionapps' should be 'function apps' (two words).

Suggested change
> The `__accountName` syntax is unique to the AzureWebJobsStorage connection and cannot be used for other storage connections. To learn to define other connections, check the reference for each trigger and binding your app uses.Also this is only applicable for functionapps which are provisioned in dedicated appservice plan not for consumption and elastic premium as they have additional storage setting WEBSITE_CONTENTAZUREFILECONNECTIONSTRING.
> The `__accountName` syntax is unique to the AzureWebJobsStorage connection and cannot be used for other storage connections. To learn to define other connections, check the reference for each trigger and binding your app uses. Also, this is only applicable for function apps which are provisioned in dedicated app service plan, not for Consumption and Elastic Premium, as they have the additional storage setting WEBSITE_CONTENTAZUREFILECONNECTIONSTRING.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Sep 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The added sentence creates a very long paragraph that's hard to read. Consider breaking this into a separate note or sentence for better readability: 'Also, this is only applicable for function apps which are provisioned in dedicated App Service plans, not for consumption and elastic premium plans as they have additional storage setting WEBSITE_CONTENTAZUREFILECONNECTIONSTRING.'

Suggested change
> The `__accountName` syntax is unique to the AzureWebJobsStorage connection and cannot be used for other storage connections. To learn to define other connections, check the reference for each trigger and binding your app uses.Also this is only applicable for functionapps which are provisioned in dedicated appservice plan not for consumption and elastic premium as they have additional storage setting WEBSITE_CONTENTAZUREFILECONNECTIONSTRING.
> The `__accountName` syntax is unique to the AzureWebJobsStorage connection and cannot be used for other storage connections. To learn to define other connections, check the reference for each trigger and binding your app uses.
>
> Also, this is only applicable for function apps which are provisioned in dedicated App Service plans. For consumption and elastic premium plans, there is an additional storage setting: `WEBSITE_CONTENTAZUREFILECONNECTIONSTRING`.

Copilot uses AI. Check for mistakes.

## Next steps

Expand Down