Skip to content
Merged
Show file tree
Hide file tree
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 @@ -40,7 +40,7 @@ export class StorageTypePromptStep extends AzureWizardPromptStep<IFunctionWizard

if (!context.useStorageEmulator) {
promptSteps.push(new StorageAccountListStep(
{ kind: StorageAccountKind.Storage, performance: StorageAccountPerformance.Standard, replication: StorageAccountReplication.LRS },
{ kind: StorageAccountKind.StorageV2, performance: StorageAccountPerformance.Standard, replication: StorageAccountReplication.LRS },
{ kind: [StorageAccountKind.BlobStorage], learnMoreLink: 'https://aka.ms/T5o0nf' }
));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class StorageConnectionListStep<T extends IStorageConnectionWizardContext
if (!(context as IStorageAzureConnectionWizard).storageAccount) {
promptSteps.push(new StorageAccountListStep(
{ // INewStorageAccountDefaults
kind: StorageAccountKind.Storage,
kind: StorageAccountKind.StorageV2,
performance: StorageAccountPerformance.Standard,
replication: StorageAccountReplication.LRS
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function createCreateFunctionAppComponents(context: ICreateFunction
const executeSteps: AzureWizardExecuteStep<IFunctionAppWizardContext>[] = [];

const storageAccountCreateOptions: INewStorageAccountDefaults = {
kind: StorageAccountKind.Storage,
kind: StorageAccountKind.StorageV2,
performance: StorageAccountPerformance.Standard,
replication: StorageAccountReplication.LRS
};
Expand Down