Skip to content
Merged
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 @@ -6,7 +6,7 @@
import { ContainerAppsAPIClient } from "@azure/arm-appcontainers";
import { getResourceGroupFromId, LocationListStep } from "@microsoft/vscode-azext-azureutils";
import { AzureWizardExecuteStep } from "@microsoft/vscode-azext-utils";
import { Progress, window } from "vscode";
import { Progress } from "vscode";
import { managedEnvironmentsAppProvider } from "../../constants";
import { ext } from "../../extensionVariables";
import { createContainerAppsAPIClient, createOperationalInsightsManagementClient } from '../../utils/azureClients';
Expand Down Expand Up @@ -51,9 +51,7 @@ export class ManagedEnvironmentCreateStep extends AzureWizardExecuteStep<IManage
}

const createdKuEnv: string = localize('createKuEnv', 'Successfully created new Container Apps environment "{0}".', context.newManagedEnvironmentName);
const viewOutput: string = localize('viewOutput', 'View Output');
ext.outputChannel.appendLog(createdKuEnv);
void window.showInformationMessage(createdKuEnv, viewOutput).then(() => ext.outputChannel.show());
}

public shouldExecute(context: IManagedEnvironmentContext): boolean {
Expand Down