Skip to content

Commit a03c9ed

Browse files
committed
Add the unique step that got removed
1 parent 138f6c7 commit a03c9ed

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: src/commands/createFunctionApp/createCreateFunctionAppComponents.ts

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { getRootFunctionsWorkerRuntime, getWorkspaceSetting, getWorkspaceSetting
1515
import { FunctionAppCreateStep } from "./FunctionAppCreateStep";
1616
import { FunctionAppHostingPlanStep } from "./FunctionAppHostingPlanStep";
1717
import { type IFunctionAppWizardContext } from "./IFunctionAppWizardContext";
18+
import { ConfigureCommonNamesStep } from "./UniqueNamePromptStep";
1819
import { ContainerizedFunctionAppCreateStep } from "./containerImage/ContainerizedFunctionAppCreateStep";
1920
import { DeployWorkspaceProjectStep } from "./containerImage/DeployWorkspaceProjectStep";
2021
import { detectDockerfile } from "./containerImage/detectDockerfile";
@@ -66,6 +67,7 @@ export async function createCreateFunctionAppComponents(context: ICreateFunction
6667
LocationListStep.addStep(wizardContext, promptSteps);
6768
wizardContext.useConsumptionPlan = true;
6869
wizardContext.stackFilter = getRootFunctionsWorkerRuntime(wizardContext.language);
70+
promptSteps.push(new ConfigureCommonNamesStep());
6971
executeSteps.push(new ResourceGroupCreateStep());
7072
executeSteps.push(new StorageAccountCreateStep(storageAccountCreateOptions));
7173
executeSteps.push(new AppInsightsCreateStep());

0 commit comments

Comments
 (0)