We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c91199f commit 8a706d3Copy full SHA for 8a706d3
1 file changed
src/commands/deploy/getOrCreateFunctionApp.ts
@@ -37,6 +37,7 @@ export async function getOrCreateFunctionApp(context: IFuncDeployContext & Parti
37
// if there was no node, then the user is creating a new function app
38
if (!node) {
39
context.activityTitle = localize('functionAppCreateActivityTitle', 'Create Function App "{0}"', nonNullProp(context, 'newSiteName'))
40
+ context.disableSharedKeyAccess = context.useManagedIdentity && context.useFlexConsumptionPlan;
41
await wizard.execute();
42
43
const resolved = context.dockerfilePath ? new ResolvedContainerizedFunctionAppResource(context as ISubscriptionContext, nonNullProp(context, 'site')) :
0 commit comments