Skip to content

Commit cd1f497

Browse files
authored
Fix: Advanced creation no longer prompts for user identity if secret-based access is used (#4573)
1 parent cc83e93 commit cd1f497

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/commands/createFunctionApp/createCreateFunctionAppComponents.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import { AppInsightsCreateStep, AppInsightsListStep, AppKind, AppServicePlanCreateStep, AppServicePlanListStep, CustomLocationListStep, LogAnalyticsCreateStep, SiteNameStep, WebsiteOS, type IAppServiceWizardContext } from "@microsoft/vscode-azext-azureappservice";
7-
import { CommonRoleDefinitions, createRoleId, LocationListStep, ResourceGroupCreateStep, ResourceGroupListStep, RoleAssignmentExecuteStep, StorageAccountCreateStep, StorageAccountKind, StorageAccountListStep, StorageAccountPerformance, StorageAccountReplication, UserAssignedIdentityListStep, type INewStorageAccountDefaults, type Role } from "@microsoft/vscode-azext-azureutils";
7+
import { CommonRoleDefinitions, createRoleId, LocationListStep, ResourceGroupCreateStep, ResourceGroupListStep, RoleAssignmentExecuteStep, StorageAccountCreateStep, StorageAccountKind, StorageAccountListStep, StorageAccountPerformance, StorageAccountReplication, type INewStorageAccountDefaults, type Role } from "@microsoft/vscode-azext-azureutils";
88
import { type AzureWizardExecuteStep, type AzureWizardPromptStep, type ISubscriptionContext } from "@microsoft/vscode-azext-utils";
99
import { FuncVersion, latestGAVersion, tryParseFuncVersion } from "../../FuncVersion";
1010
import { DurableBackend, funcVersionSetting } from "../../constants";
@@ -103,7 +103,6 @@ export async function createCreateFunctionAppComponents(context: ICreateFunction
103103
}
104104
));
105105
promptSteps.push(new AppInsightsListStep());
106-
promptSteps.push(new UserAssignedIdentityListStep());
107106
}
108107

109108
executeSteps.push(new RoleAssignmentExecuteStep(() => {

0 commit comments

Comments
 (0)